{% extends "base_site.html" %} {% load staticfiles %} {% block title %}Drafts - View{% endblock %} {% block extrahead %}{{ block.super }} {% endblock %} {% block breadcrumbs %}{{ block.super }} » Drafts » {{ draft.name }} {% endblock %} {% block content %} {% comment %}{{ request.user }}{% endcomment %}

Draft - View

{% comment %}{% endcomment %}
Document Name:{{ draft.title }}
Area:{% if draft.group.parent %}{{ draft.group.parent }}{% endif %}
Group:{% if draft.group %}{{ draft.group.acronym }}{% endif %}
Area Director:{{ draft.ad }}
Shepherd:{% if draft.shepherd %}{{ draft.shepherd.person }} <{{ draft.shepherd.address }}>{% else %}None{% endif %}
Notify:{{ draft.notify }}
Document State:{{ draft.get_state }}
IESG State:{{ draft.iesg_state }}
Stream:{{ draft.stream }}
Under Review by RFC Editor:{% if draft.review_by_rfc_editor %}YES{% else %}NO{% endif %}
File Name: {% if draft.expired_tombstone %} {{ draft.filename }}
This is a last active version - the tombstone was expired.
{% else %}{{ draft.name }} {% endif %}
Document Aliases: {% for alias in draft.docalias_set.all %} {% if not forloop.first %}, {% endif %} {{ alias.name }} {% endfor %}
Revision:{{ draft.rev }}
Revision Date:{{ draft.revision_date }}
Start Date:{{ draft.start_date }}
Number of Pages:{{ draft.pages }}
Local Path:/ftp/internet-drafts/{{ draft.local_path|default_if_none:"" }}
Abstract:Click here to view the abstract
Expiration Date:{{ draft.expires|date:"M. d, Y" }}
Intended Status:{{ draft.intended_std_level|default_if_none:"" }}
Standardization Level:{{ draft.std_level|default_if_none:"" }}
RFC Number:{{ draft.rfc_number|default_if_none:"" }}
Comments:{{ draft.internal_comments|default_if_none:"" }}
Last Modified Date:{{ draft.time }}
Replaced by:{% if draft.replaced_by %}{{ draft.replaced_by.name }}{% endif %}
Related Documents:{% for item in draft.relateddocument_set.all %}{% if not forloop.first %}, {% endif %}{{ item.relationship }} {{ item.target.name }}{% endfor %}
Tags: {% for tag in draft.tags.all %} {% if not forloop.first %}, {% endif %} {{ tag }} {% endfor %}
{% endblock %}