source: asadb/template/midway/map.html @ cf509c0

space-accessstablestage
Last change on this file since cf509c0 was cf509c0, checked in by Alex Dehnert <adehnert@…>, 13 years ago

Basic list of groups at the midway

  • Property mode set to 100644
File size: 862 bytes
Line 
1{% extends "base.html" %}
2
3{% block title %}ASA: {{midway.name}}{% endblock %}
4{% block content %}
5
6<h1><a href='http://web.mit.edu/asa/'>ASA</a>: {{midway.name}}</h1>
7
8<p>Welcome to the ASA {{midway.name}}! You can find out about MIT's many exciting student groups. Below you will find a map of the Midway, as well as groups' table assignments and links to their respective websites.</p>
9
10<h2>Map</h2>
11
12<img src='{{ MEDIA_URL }}{{midway.table_map}}' alt='Midway map'>
13
14<h2>Assignments</h2>
15<table class='pretty-table'>
16<tr>
17    <th>Group</th>
18    <th>Table</th>
19    <th>Website</th>
20</tr>
21{% for assignment in assignments %}
22<tr>
23    <th>{{assignment.group}}</th>
24    <td>{{assignment.location}}</td>
25    <td>{% if assignment.group.website_url %}<a href='{{assignment.group.website_url}}'>Website</a>{% endif %}</td>
26</tr>
27{% endfor %}
28</table>
29
30{% endblock %}
Note: See TracBrowser for help on using the repository browser.