{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% load static %} {% load ietf_filters textfilters %} {% block title %}{{ doc.title|default:"Untitled" }}{% endblock %} {% block content %} {% origin %} {{ top|safe }} {% include "doc/revisions_list.html" %}
{% if doc.rev != latest_rev %}
The information below is for an old version of the document.
{% endif %} {% if doc.abstract or doc.type_id == 'slides' and can_manage_material and not snapshot %} {% endif %} {% if other_types %} {% endif %} {% if doc.type_id == 'procmaterials' and doc.external_url|length > 0 %} {% endif %} {% if doc.type_id != 'procmaterials' %} {% if presentations or can_manage_material %} {% endif %} {% endif %}
{% if doc.meeting_related %}Meeting{% endif %} {{ doc.type.name }} {% if doc.group %} {{ doc.group.name }} ({{ doc.group.acronym }}) {{ doc.group.type.name }} {% endif %} {% if snapshot %}Snapshot{% endif %}
Title {% if not snapshot and can_manage_material %} {% doc_edit_button 'ietf.doc.views_material.edit_material' name=doc.name action="title" %} {% endif %} {{ doc.title|default:'(None)' }}
Abstract {% if not snapshot and can_manage_material %} {% doc_edit_button 'ietf.doc.views_material.edit_material' name=doc.name action="abstract" %} {% endif %} {{ doc.abstract|format_snippet }}
State {% if not snapshot and can_manage_material %} {% doc_edit_button 'ietf.doc.views_material.edit_material' name=doc.name action="state" %} {% endif %} {% if doc.get_state.name %} {{ doc.get_state.name }} {% else %} (None) {% endif %}
Other versions {% for t, url in other_types %} {{ t }}{% if not forloop.last %},{% endif %} {% endfor %}
External URL {{ doc.external_url }}
On agenda {% if not snapshot and can_manage_material %} {% doc_edit_button "ietf.doc.views_doc.all_presentations" name=doc.name %} {% endif %} {% if presentations %} {% for pres in presentations %} {{ pres.session.short_name }} at {{ pres.session.meeting }} {% if pres.rev != doc.rev %}(version -{{ pres.rev }}){% endif %}{% if not forloop.last %},{% endif %} {% endfor %} {% else %} (None) {% endif %}
Last updated {{ doc.time|date:"Y-m-d" }}

{% if can_upload %} Upload New Revision {% endif %}

{{ doc.name }}-{{ doc.rev }}
{% if doc.rev and content != None %} {% if content_is_html %} {{ content|sanitize|safe }} {% else %}
{{ content|maybewordwrap|urlize_ietf_docs|linkify }}
{% endif %} {% else %} Not available as plain text. {% if other_types %} Download as {{ other_types.0.0.upper }}. {% endif %} {% endif %}
{% endblock %} {% block js %} {% endblock %}