cleaned up code and integrated some simple CSS
[rapidsms] / templates / show_names.tmpl
1 {% extends 'layout.tmpl' %}
2
3 {% block content %}
4 <h2>List of Registered Phone Numbers</h2>
5
6 <table>
7 <tr>
8 <th>Name</th>
9 <th>Phone Number</th>
10 </tr>
11
12 {% for person in people %}
13 <tr>
14 <td>{{person.name}}</td>
15 <td>{{person.phone_number}}</td>
16 </tr>
17 {% endfor %}
18 </table>
19
20 {% endblock %}

Benjamin Mako Hill || Want to submit a patch?