Changeset 7092165
- Timestamp:
- May 23, 2010, 12:58:41 AM (16 years ago)
- Branches:
- master, fysm-4-1, space-access, stable, stage, test-hooks
- Children:
- 6fe1ad0
- Parents:
- a10dd4b
- git-author:
- Alex Dehnert <adehnert@…> (05/23/10 00:58:41)
- git-committer:
- Alex Dehnert <adehnert@…> (05/23/10 00:58:41)
- Location:
- asadb
- Files:
-
- 2 edited
-
media/style/style.css (modified) (3 diffs)
-
template/fysm/fysm_detail.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
asadb/media/style/style.css
rae881e5 r7092165 158 158 } 159 159 160 .fysm-detail .back { float: left; }161 .fysm-detail .forward { float: right; }162 .fysm-detail .up { text-align: center; }160 .fysm-detail .back { text-align: left; float: left; } 161 .fysm-detail .forward { text-align: right; float: right; } 162 .fysm-detail .up { text-align: center; margin: auto; } 163 163 .fysm-detail h3 164 164 { … … 171 171 clear: both; 172 172 margin: 0; 173 margin-top: 3em;174 173 padding: 0.5em 1em; 175 174 background: #BE2933; … … 179 178 { 180 179 margin: 0; 180 min-width: 30%; 181 181 } 182 182 -
asadb/template/fysm/fysm_detail.html
r101bf09 r7092165 1 {% extends "base .html" %}1 {% extends "base-plain.html" %} 2 2 {% load formcats %} 3 3 … … 7 7 8 8 <div class='fysm-navstrip'> 9 {% if prev %} 10 <p><a class='back' href='{% url fysm-view year prev.pk %}'>« {{prev.display_name}}</a></p> 11 {% endif %} 12 {% if next %} 13 <p><a class='forward' href='{% url fysm-view year next.pk %}'>{{next.display_name}} »</a></p> 14 {% endif %} 9 <p class='back'>{% if prev %} 10 <a href='{% url fysm-view year prev.pk %}'>« Previous: {{prev.display_name}}</a> 11 {%else%} 12 {% endif %}</p> 13 14 <p class='forward'>{% if next %} 15 <a href='{% url fysm-view year next.pk %}'>Next: {{next.display_name}} »</a> 16 {%else%} 17 {% endif %}</p> 18 15 19 <p class='up'><a href='{% url fysm year %}'>Up to Index</a></p> 20 16 21 <div style='clear: both;'></div> 17 22 </div>
Note: See TracChangeset
for help on using the changeset viewer.