16 lines
837 B
HTML
16 lines
837 B
HTML
{% for group in grouped %}
|
|
<h3>In State: <a href="/idtracker/states/{{ group.list.0.cur_state_id }}/">{{ group.list.0.cur_state }}</a>{% if group.list.0.cur_sub_state %} :: <a href="/idtracker/states/substate/{{ group.list.0.cur_sub_state_id }}/">{{ group.list.0.cur_sub_state }}</a>{% endif %}</h3>
|
|
<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 %}
|
|
|