{% load i18n %}
| {% trans "Name" %} | {% trans "Value" %} |
|---|---|
| {% trans "View" %} | {{ view_module }}.{{ view_name }} |
| {% trans "Template" %} | {{ template }} |
| {% trans "Template choices" %} | {% for choice in template_choices %}
{% if choice == template %}{% endif %}{{ choice }}{% if choice == template %}{% endif %}{% if not forloop.last %}, {% endif %}
{% empty %}
-
{% endfor %}
|
| {% trans "Form" %} | {% if view_data.form %}{{ view_data.form }}{% else %}-{% endif %} |
| {% trans "Model" %} | {% if view_data.model %}{{ view_data.model }}{% else %}-{% endif %} |
| {% trans "Context" %} | {% if view_data %}{% for key, path in view_data.template_context %}
{{ key }}: {{ path }}{% empty %}-{% endfor %}{% else %}- (needs TemplateResponse){% endif %} |