aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/templates
diff options
context:
space:
mode:
authorJef van Schendel <mail@jefvanschendel.nl>2011-11-20 17:01:23 +0100
committerJef van Schendel <mail@jefvanschendel.nl>2011-11-20 17:01:23 +0100
commit0b3cdd6a25f8aaa74beecb7fed32a20cc13587a8 (patch)
tree872827c1aa7941ca4265cafa90a1e09f5be47299 /mediagoblin/templates
parent7807f5a513f2d5e510916e00dc276d0cd33de66a (diff)
downloadmediagoblin-0b3cdd6a25f8aaa74beecb7fed32a20cc13587a8.tar.lz
mediagoblin-0b3cdd6a25f8aaa74beecb7fed32a20cc13587a8.tar.xz
mediagoblin-0b3cdd6a25f8aaa74beecb7fed32a20cc13587a8.zip
Navigation buttons edits. Removed images as they are no longer needed. Related: bug #504
Diffstat (limited to 'mediagoblin/templates')
-rw-r--r--mediagoblin/templates/mediagoblin/utils/prev_next.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/mediagoblin/templates/mediagoblin/utils/prev_next.html b/mediagoblin/templates/mediagoblin/utils/prev_next.html
index 75903076..3363891b 100644
--- a/mediagoblin/templates/mediagoblin/utils/prev_next.html
+++ b/mediagoblin/templates/mediagoblin/utils/prev_next.html
@@ -25,23 +25,23 @@
{# There are no previous entries for the very first media entry #}
{% if prev_entry_url %}
<a class="navigation_button navigation_left" href="{{ prev_entry_url }}">
- <img src="{{ request.staticdirect('/images/navigation_left.png') }}" alt="Previous image" />
+ &larr; newer
</a>
{% else %}
{# This is the first entry. display greyed-out 'previous' image #}
<p class="navigation_button navigation_left">
- <img src="{{ request.staticdirect('/images/navigation_end.png') }}" alt="No previous images" />
+ &larr; newer
</p>
{% endif %}
{# Likewise, this could be the very last media entry #}
{% if next_entry_url %}
<a class="navigation_button" href="{{ next_entry_url }}">
- <img src="{{ request.staticdirect('/images/navigation_right.png') }}" alt="Next image" />
+ older &rarr;
</a>
{% else %}
{# This is the last entry. display greyed-out 'next' image #}
<p class="navigation_button">
- <img src="{{ request.staticdirect('/images/navigation_end.png') }}" alt="No following images" />
+ older &rarr;
</p>
{% endif %}
</div>