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
16 lines
593 B
HTML
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> </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 %}
|
|
|