datatracker/ietf/templates/idtracker/search_result_table.html
Bill Fenner b5ce6e375c Extensive updates of idtracker.
ballot sets are now (hopefully) treated properly, except for the
row coloring.  They're also included in the "view_id" view.

Search is re-done, it turns out that using draft__<anything> means
that RFCs won't be matched, so build lists of possibly-matching
RFCs and I-Ds and pass them through.  This applies to filename,
group and rfc number.
 - Legacy-Id: 190
2007-05-31 19:24:26 +00:00

16 lines
593 B
HTML

{% for group in grouped %}
<h2>{{ group.grouper }}</h2>
<table bgcolor="#DFDFDF" cellspacing="0" cellpadding="0" border="0" width="800">
<tr bgcolor="#A3A3A3"><th>&nbsp;</th><th width="250">Name (Intended Status)</th><th>Ver</th><th>Responsible AD</th><th>Status Date</th><th>Modified</th></tr>
{% for match in group.list %}
{% include "idtracker/search_result_row.html" %}
{% if match.primary_flag %}
{% for match in match.ballot_others %}
{% include "idtracker/search_result_row.html" %}
{% endfor %}
{% endif %}
{% endfor %}
</table>
{% endfor %}