mwielgoszewski/doorman

View on GitHub
doorman/templates/manage/rule.html

Summary

Maintainability
Test Coverage
{% extends "layout.html" %}
{% block content %}

    <div class="body-content">
        <div class="row">
            <div class="col-md-9">

                {% if rule is defined %}
                <h1>{{ rule.name }}</h1>
                {% endif %}

                {% include "forms/rule.html" %}

            </div><!--./col-md-9-->
        </div><!--./row-->
    </div><!--./body-content-->

{% endblock %}