{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% load django_bootstrap5 %} {% block title %} {% if action == "new" or action == "revise" %} Upload {% else %} Edit {% endif %} {{ material_type|lower }} for {% if group is not None %} group {{ group.name }} ({{ group.acronym }}) {% elif doc.meeting_related %} {{ doc.get_related_meeting }} {% endif %} {% endblock %} {% block content %} {% origin %}
{% if group is not None %} Below you can upload a document for the group {{ group.name }} ({{ group.acronym }}). The document will appear under the materials tab in the group pages. {% elif doc.meeting_related %} Below you can upload a document for the {{ doc.get_related_meeting }} meeting. {% endif %}
{% elif action == "revise" %}{% if group is not None %} Below you can upload a new revision of {{ doc_name }} for the group {{ group.name }} ({{ group.acronym }}). {% elif doc.meeting_related %} Below you can upload a new revision of {{ doc_name }} for the {{ doc.get_related_meeting }} meeting. {% endif %}
{% endif %} {% endblock %} {% block js %} {% endblock %}