Changeset 8f46374
- Timestamp:
- Aug 2, 2012, 2:15:45 AM (14 years ago)
- Branches:
- master, space-access, stable, stage
- Children:
- d90059c
- Parents:
- 0229bd5
- git-author:
- Alex Dehnert <adehnert@…> (08/02/12 02:15:45)
- git-committer:
- Alex Dehnert <adehnert@…> (08/02/12 02:15:45)
- Location:
- asadb
- Files:
-
- 3 edited
-
media/style/style.css (modified) (1 diff)
-
template/groups/group_detail.html (modified) (2 diffs)
-
template/groups/group_list.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
asadb/media/style/style.css
r078e53a r8f46374 226 226 } 227 227 228 tr.group-status-active.group-active-True td.group-status 228 .group-detail-page h1 + p.group-status { margin-top: -1em; margin-bottom: 2em; } 229 .group-detail-page.group-status-active h1 { color: black; } 230 .group-detail-page.group-status-applying h1 { color: red; } 231 .group-detail-page.group-status-nge h1 { color: yellow; } 232 .group-detail-page.group-status-provisional h1 { color: yellow; } 233 .group-detail-page.group-status-derecognized h1 { color: red; } 234 .group-detail-page.group-status-suspended h1 { color: yellow; } 235 236 .group-list-page tr.group-status-active.group-active-True td.group-status 229 237 { 230 238 background-color: green; 231 239 color: black; 232 240 } 233 tr.group-active-True td.group-status241 .group-list-page tr.group-active-True td.group-status 234 242 { 235 243 background-color: yellow; 236 244 color: black; 237 245 } 238 tr.group-active-False td.group-status246 .group-list-page tr.group-active-False td.group-status 239 247 { 240 248 background-color: red; -
asadb/template/groups/group_detail.html
r68c93e8 r8f46374 4 4 {% block content %} 5 5 6 <div class='group-detail-page group-status-{{group.group_status.slug}}'> 6 7 <h1>{{group.name}}{% if group.abbreviation %} ({{group.abbreviation}}){%endif%}</h1> 8 {% if group.group_status.slug != "active" %}<p class='group-status'><em>{{group.group_status.name}}</em></p>{%endif%} 7 9 8 10 {% if adminpriv %}{% include "groups/group_tools.part.html" %} … … 150 152 {% endif %} 151 153 154 </div> 152 155 {% endblock %} 153 156 -
asadb/template/groups/group_list.html
r8c7a670 r8f46374 4 4 {% block content %} 5 5 6 <div class='group-list-page'> 6 7 <h1>MIT Student Groups</h1> 7 8 … … 44 45 </table> 45 46 47 </div> 46 48 {% endblock %}
Note: See TracChangeset
for help on using the changeset viewer.