{% extends "base.html" %} {% load markdown_filters %} {% block title %}{{ rule.title }} - {{ playbook.name }}{% endblock %} {% block content %}

{{ rule.title }}

{{ rule.slug }} · always_apply: {{ rule.always_apply|yesno:"yes,no" }}

{% if can_edit %} {% endif %}
Content
{% if rule.content %}{{ rule.content|markdown }}{% else %}

No body.

{% endif %}
Activities {{ activities|length }}
{% if activities %}
    {% for act in activities %}
  • {{ act.name }} {{ act.workflow.name }}
  • {% endfor %}
{% else %}

No activities linked.

{% endif %}
{% endblock %}