{% extends "master_ass.html" %} {% load detailed_tags %} {% block body %}

Installed Applications

{% for app,regex in installed_apps.items %} {% endfor %}
App Name Base URL Example Pattern Options
{{ app }} {{ regex|default_if_none:"Undefined" }} {% if regex %}example.com/{{ regex|cut:"^"|cut:'/' }}/list/2014/get{% else %}Not defined in base urls.py{% endif %} {% if regex and not app == 'admin' and not app == 'django.contrib.admindocs' %}Associations{% endif %}
{% if not show_all %}

Doesn't display all the installed apps (ex: Admin)

Show all {% else %}

Show less

{% endif %}
{% endblock %}