Ignore:
Timestamp:
Mar 17, 2013, 6:58:58 AM (13 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, space-access, stable, stage
Children:
cf509c0
Parents:
d848b98
git-author:
Alex Dehnert <adehnert@…> (03/17/13 06:58:58)
git-committer:
Alex Dehnert <adehnert@…> (03/17/13 06:58:58)
Message:

WIP: midway page

File:
1 edited

Legend:

Unmodified
Added
Removed
  • asadb/template/midway/upload.html

    rd848b98 r7d7801f  
    33{% block title %}ASA: {{midway.name}}: upload assignments{% endblock %}
    44{% block content %}
    5 <h2>{{midway.name}}: upload assignments</h2>
     5<h1>{{midway.name}}: upload assignments</h1>
     6
     7{% if uploaded %}
     8<h2>Results</h2>
     9
     10<h3>New entries added ({{found|length}})</h3>
     11
     12<table class='pretty-table'>
     13<tr>
     14    <th>Group</th>
     15    <th>Table</th>
     16</tr>
     17{% for assignment in found %}
     18<tr>
     19    <th>{{assignment.group}}</th>
     20    <td>{{assignment.location}}</td>
     21</tr>
     22{% endfor %}
     23</table>
     24
     25{% for issue, cases in issues.items %}
     26<h3>Issue: {{issue}} ({{cases|length}})</h3>
     27<table class='pretty-table'>
     28<tr>
     29    <th>Name</th>
     30    <th>Email</th>
     31    <th>Table</th>
     32</tr>
     33{% for name, email, table in cases %}
     34<tr>
     35    <th>{{name}}</th>
     36    <td>{{email}}</td>
     37    <td>{{table}}</td>
     38</tr>
     39{% endfor %}
     40</table>
     41{% endfor %}
     42
     43<!-- end of results -->
     44{% endif %}
     45
     46<h2>Input</h2>
    647
    748<form enctype="multipart/form-data" method="post" action="">
Note: See TracChangeset for help on using the changeset viewer.