{% extends "base.html" %} {# Copyright The IETF Trust 2007, All Rights Reserved #} {% load ietf_filters %} {% block title %}Liaison Management{% endblock %} {% block content %}

Liaison Management

{% if can_send_incoming or can_send_outgoing %}

Add new liaison

{% endif %} {% if to_aprove %}

Liaisons that need your approval

{% for liaison in to_aprove %} {{ liaison }} {% endfor %}
{% endif %} {% if to_edit %}

Liaisons you can edit

{% for liaison in to_edit %} {{ liaison.submitted_date|date:"Y-m-d" }} {{ liaison.from_body|escape }} {% if liaison.by_secretariat %} {% if liaison.submitter_email %} {{ liaison.submitter_name|escape }} {% else %} {{ liaison.submitter_name|escape }} {% endif %} {% else %} {{ liaison.to_body|escape }} {% endif %} {% if liaison.by_secretariat %} {% for file in liaison.uploads_set.all %} {{ file.file_title|escape }}
{% endfor %} {% else %} {{ liaison.title|escape }} {% endif %} {% endfor %}
{% endif %} {% endblock %}