{% extends 'ndr_core/admin_views/base.html' %} {% load render_table from django_tables2 %} {% load crispy_forms_tags %} {% block extra_css %} {% if background_form %} {% include 'ndr_core/admin_views/includes/image_picker_init_css.html' %} {% endif %} {% endblock %} {% block page_js %} {% if background_form %} {% include 'ndr_core/admin_views/includes/image_picker_init_js.html' %} {% endif %} {% endblock %} {% block content %}

Manage Pages

Manage Pages Create Page Bulk Create Manage Footer Manage Background
Help
{% if not footer_form and not not_found_form and not background_form %}
{% for page in pages %} {% for sub_page in page.ndrcorepage_set.all|dictsort:"index" %} {% endfor %} {% endfor %}
Page Name Navigation Label Type URL Actions
{{ page.name }} {{ page.label }} {{ page.get_page_type_display }} {{ page.url }}
{% if not forloop.first %} {% endif %} {% if not page.view_name == 'index' %} {% endif %}
{{ sub_page.name }} {{ page.label }} → {{ sub_page.label }} {{ sub_page.get_page_type_display }} {{ sub_page.url }}
{% if not forloop.first %} {% endif %} {% if not sub_page.view_name == 'index' %} {% endif %}
{% endif %} {% if footer_form %}
Manage Page Footer
{% crispy footer_form %}
{% endif %} {% if background_form %}
Manage Default Background
{% crispy background_form %}
{% endif %} {% if not_found_form %}
Manage 404 Page
{% crispy not_found_form %}
{% endif %} {% endblock %}