{# bs5ok #} {% extends "nomcom/nomcom_private_base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% block subtitle %}- Template: {{ template }}{% endblock %} {% load django_bootstrap5 %} {% block nomcom_content %} {% origin %}

Template
{{ template }}

Title
{{ template.title }}
Group
{{ template.group }}
Template type
{{ template.type.name }}: {% if template.type.slug == "rst" %} This template uses the syntax of reStructuredText. Get a quick reference at http://docutils.sourceforge.net/docs/user/rst/quickref.html . You can do variable interpolation with $variable if the template allows any variables. {% elif template.type.slug == "django" %} This template uses the syntax of the default django template framework. Get more info at https://docs.djangoproject.com/en/dev/topics/templates/ . You can do variable interpolation with the current django markup {{variable}} if the template allows any variables. {% elif template.type.slug == "plain" %} This template uses plain text, so no markup is used. You can do variable interpolation with $variable if the template allows any variables. {% endif %}
{% if template.variables %}
Variables allowed in this template
{{ template.variables|linebreaks }}
{% endif %}
{% if form.errors %}

There were errors, see below.

{% endif %} {% csrf_token %} {% bootstrap_form form %} Back
{% endblock %}