16 lines
466 B
HTML
16 lines
466 B
HTML
{# Copyright The IETF Trust 2007, All Rights Reserved #}
|
|
{% if obj.by_secretariat %}
|
|
<h3>Attached Document(s)</h3>
|
|
{% if obj.uploads_set.count %}
|
|
<ul>
|
|
{% for file in obj.uploads_set.all %}
|
|
<li><a href="https://datatracker.ietf.org/documents/LIAISON/file{{ file.file_id }}{{ file.file_extension }}">{{ file.file_title }}</a><br>
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
NONE
|
|
{% endif %}
|
|
{% else %}
|
|
{{ obj.body|truncatewords:"30"|wordwrap:"71"|escape|linebreaksbr }}
|
|
{% endif %}
|