23 lines
521 B
HTML
23 lines
521 B
HTML
{% extends 'admin/master.html' %}
|
|
{% import 'admin/lib.html' as lib with context %}
|
|
{% from 'admin/lib.html' import extra with context %} {# backward compatible #}
|
|
|
|
{% block head %}
|
|
{{ super() }}
|
|
{{ lib.form_css() }}
|
|
{% endblock head %}
|
|
|
|
{% block body %}
|
|
{{ super() }}
|
|
{% if current_user.is_authenticated %}
|
|
<p class="lead">Use the menu items above to add services and incidents.</p>
|
|
{% else %}
|
|
{{lib.render_form(form)}}
|
|
{% endif %}
|
|
{% endblock body %}
|
|
|
|
{% block tail %}
|
|
{{super()}}
|
|
{{lib.form_js()}}
|
|
{% endblock tail %}
|