Ignore:
Timestamp:
Sep 15, 2011, 3:34:54 PM (15 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, space-access, stable, stage, test-hooks
Children:
5c68184
Parents:
ceaf3bd (diff), fbb362a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Alex Dehnert <adehnert@…> (09/15/11 15:34:54)
git-committer:
Alex Dehnert <adehnert@…> (09/15/11 15:34:54)
Message:

Merge remote branch 'remotes/origin/new-db'

Location:
asadb/template/groups
Files:
8 added
1 edited

Legend:

Unmodified
Added
Removed
  • asadb/template/groups/group_list.html

    r140fc9e rfbb362a  
    66<h1>MIT Student Groups</h1>
    77
     8<h2>Search</h2>
     9
     10<form action="" method="get">
     11    <table class='pretty-table'>
     12    {{ filter.form.as_table }}
     13    </table>
     14    <input type="submit" value="Search" />
     15</form>
     16
     17<h2>The Groups</h2>
     18
    819<table class='pretty-table'>
    920<thead>
    1021    <tr>
    1122        <th>Name</th>
     23        <th>Website</th>
     24        <th>ASA DB</th>
     25        <th>Description</th>
    1226        <th>Meeting Time</th>
    1327    </tr>
     
    1630{% for group in group_list %}
    1731    <tr>
    18         <td>{% if group.website_url %}<a href='{{group.website_url}}'>{% endif %}{{group.name}}{%if group.website_url%}</a>{%endif%}</td>
     32        <th>{{group.name}}</th>
     33        <td>{% if group.website_url %}<a href='{{group.website_url}}'>Website</a>{%endif%}</td>
     34        <td><a href='{% url groups:group-detail group.pk %}'>DB Entry</a></td>
     35        <td>{{group.description}}</td>
    1936        <td>{{group.meeting_times}}</td>
    2037    </tr>
Note: See TracChangeset for help on using the changeset viewer.