public
Description: Commuting made easy - save the muni stops that interest you most
Homepage: http://yourmuni.appspot.com
Clone URL: git://github.com/mihasya/yourmuni.git
yourmuni / tpl / user / catch.html
100644 32 lines (30 sloc) 0.68 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{% extends "master.html" %}
 
{% block title %}
catching '{{ bmark_desc }}'
{% endblock %}
 
{% block content %}
<h2>{{ bmark_desc }}</h2>
<p>
<ul>
{% for stop in stops %}
    <li>
        <p>
            <strong>{{ stop.route }} @ {{ stop.stop }}</strong><br />
            {% for time in stop.times %}
            {% if forloop.first %}
                <strong>{{ time }}</strong>
            {% else %}
                , {{ time }}
            {% endif %}
            {% if forloop.last %}
                minutes
            {% endif %}
            {% empty %}
            No times available
            {% endfor %}
        </p>
    </li>
{% endfor %}
</ul>
</p>
{% endblock %}