diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-07-01 09:09:58 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-07-01 09:09:58 +0000 |
commit | 38599c2345c2cd49dec2e7ae25093cdb15eb5a23 (patch) | |
tree | e4bd06ac477fe45a92982c4d5c432649340d872a /templates | |
parent | 7258a4139baaaace3ce9bbeeeab8a20da1b12ff7 (diff) |
instead of empty cells, show now grayed icons if first or last object reached
git-svn-id: file:///var/lib/svn/phpfspot/trunk@153 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'templates')
-rw-r--r-- | templates/photo_index.tpl | 4 | ||||
-rw-r--r-- | templates/single_photo.tpl | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/templates/photo_index.tpl b/templates/photo_index.tpl index 28a933d..57cf2ff 100644 --- a/templates/photo_index.tpl +++ b/templates/photo_index.tpl @@ -58,7 +58,7 @@ <tr> <td style="text-align: left; width: 32px;"> { if $previous_url == "" } - + <img src="resources/arrow_left_gray.png" alt="first page reached" /> { else } <a href="{$previous_url}"> <img src="resources/arrow_left.png" alt="previous photo" /> @@ -74,7 +74,7 @@ </td> <td style="text-align: right; width: 32px;"> { if $next_url == "" } - + <img src="resources/arrow_right_gray.png" alt="last page reached" /> { else } <a href="{$next_url}"> <img src="resources/arrow_right.png" alt="next photo" /> diff --git a/templates/single_photo.tpl b/templates/single_photo.tpl index e5bcada..536f1db 100644 --- a/templates/single_photo.tpl +++ b/templates/single_photo.tpl @@ -30,7 +30,7 @@ <tr> <td style="text-align: left; width: 33%;"> { if $previous_url == "" } - + <img src="resources/arrow_left_gray.png" alt="first photo reached" /> { else } <a href="{$previous_url}"> <img src="resources/arrow_left.png" alt="previous photo" /> @@ -44,7 +44,7 @@ </td> <td style="text-align: right; width: 33%;"> { if $next_url == "" } - + <img src="resources/arrow_right_gray.png" alt="last photo reached" /> { else } <a href="{$next_url}"> <img src="resources/arrow_right.png" alt="next photo" /> |