22 lines
983 B
Plaintext
22 lines
983 B
Plaintext
{% load ietf_filters %}{% autoescape off %}Title: {{ liaison.title|clean_whitespace }}
|
|
Submission Date: {{ liaison.submitted|date:"Y-m-d" }}
|
|
URL of the IETF Web page: {{ liaison.get_absolute_url }}
|
|
{% if liaison.deadline %}Please reply by {{ liaison.deadline }}{% endif %}
|
|
From: {% if liaison.from_contact %}{{ liaison.from_contact.formatted_email }}{% endif %}
|
|
To: {{ liaison.to_contacts }}
|
|
Cc: {{ liaison.cc_contacts }}
|
|
Response Contacts: {{ liaison.response_contacts }}
|
|
Technical Contacts: {{ liaison.technical_contacts }}
|
|
Purpose: {{ liaison.purpose.name }}
|
|
{% for related in liaison.source_of_set.all %}
|
|
Referenced liaison: {% if related.target.title %}{{ related.target.title }}{% else %}Liaison #{{ related.target.pk }}{% endif %} ({{ related.target.get_absolute_url }})
|
|
{% endfor %}
|
|
Body: {{ liaison.body }}
|
|
Attachments:
|
|
{% for doc in liaison.attachments.all %}
|
|
{{ doc.title }}
|
|
{{ doc.href }}
|
|
{% empty %}
|
|
No document has been attached
|
|
{% endfor %}{% endautoescape %}
|