datatracker/ietf/templates/meeting/submission_status_snippet.html
Michael Lee 27edcb2b3e * Add meeting materials list page
* For testing, the page lists meeting materials regardless the submission cut off date.
 * Need to add Training sessions, IRTF RGs, and Interim WGs
 - Legacy-Id: 203
2007-06-01 04:10:39 +00:00

34 lines
2 KiB
HTML

{% if wg.agenda_file and wg.minute_file and wg.slides %}
<tr bgcolor="#BBFFBB"><td>Presentation files received, agenda received, minutes received</td></tr>
{% else %}
{% if not wg.agenda_file and not wg.minute_file and not wg.slides %}
<tr bgcolor="#ff8888"><td>No presendtatio files, no agenda, no minutes</td></tr>
{% else %}
{% if not wg.agenda_file and wg.minute_file and not wg.slides %}
<tr bgcolor="ffffbb"><td>No presentation files, no agenda, minutes received</td></tr>
{% else %}
{% if wg.agenda_file and not wg.minute_file and not wg.slides %}
<tr bgcolor="ffffbb"><td>No presentation files, no minute, agenda received</td></tr>
{% else %}
{% if wg.agenda_file and wg.minute_file and not wg.slides %}
<tr bgcolor="ffffbb"><td>No presentation files, agenda received, minutes received</td></tr>
{% else %}
{% if not wg.agenda_file and not wg.minute_file and wg.slides %}
<tr bgcolor="ffcc88"><td>Presentation files received, no agenda, no minutes</td></tr>
{% else %}
{% if not wg.agenda_file and wg.minute_file and wg.slides %}
<tr bgcolor="ffcc88"><td>Presentation files received, no agenda, minutes received</td></tr>
{% else %}
{% if wg.agenda_file and not wg.minute_file and wg.slides %}
<tr bgcolor="ffcc88"><td>Presentation files received, agenda received, no minutes</td></tr>
{% else %}
<tr bgcolor="cccccc"><td>Unknown Status</td></tr>
{% endif %}
{% endif %}
{% endif %}
{% endif %}
{% endif %}
{% endif %}
{% endif %}
{% endif %}