~allanlesage/+junk/helipad-alesage-sauce

« back to all changes in this revision

Viewing changes to memevent/templates/memevent/arch_overview.html

  • Committer: Tarmac
  • Author(s): Joe Talbott
  • Date: 2013-07-25 01:21:08 UTC
  • mfrom: (520.3.1 memevent_machines)
  • Revision ID: tarmac-20130725012108-f2iaypwz96vun1lf
[r=Chris Johnston] Add sections for each machine type.  from Joe Talbott

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
        </li>
20
20
    {% endfor %}
21
21
    </ul>
 
22
    <h3 class="nav-title">MACHINE</h3>
 
23
    <ul class="left_nav">
 
24
    {% for machine in tables %}
 
25
        <li>
 
26
        <a href="{% url memevent_arch_overview arch %}#{{ machine }}">{{ machine }}</a>
 
27
        </li>
 
28
    {% endfor %}
 
29
    </ul>
22
30
</div>
23
31
<div class="grid_13">
24
 
  <div style="overflow: hidden;">
25
 
    {% render_table table %}
26
 
  </div>
 
32
  {% for machine, table in tables.items %}
 
33
      <div style="overflow: hidden;">
 
34
        <h3 id="{{ machine }}" name="{{ machine }}">{{ machine }}</h3>
 
35
        {% render_table table %}
 
36
      </div>
 
37
  {% endfor %}
27
38
</div>
28
39
{% endblock content %}