{% extends 'admin/master.html' %} {% block body %}

{{ project.name }}

{% if project.enabled %} enabled {% else %} disabled {% endif %} · provider: {% if project.name == 'Default' %}ansible{% else %}{{ project.name }}{% endif %} · Edit project · Back to all projects
{% if project.description %}
{{ project.description }}
{% endif %}
{% set return_url = url_for('ansibleproject.project_detail', project_id=project.pk) %} {% for section in sections %}

{{ section.title }}

{{ section.description }}
{% if section.rules %} {% for rule in section.rules %} {% endfor %}
Name Status Order
{{ rule.name or '(unnamed)' }} {% if rule.documentation %}
{{ rule.documentation[:120] }}{% if rule.documentation|length > 120 %}…{% endif %}
{% endif %}
{% if rule.enabled %} enabled {% else %} disabled {% endif %} {{ rule.sort_field }}
{% else %}
No {{ section.title|lower }} in this project yet.
{% endif %}
{% endfor %} {% endblock %}