summaryrefslogtreecommitdiffstats
path: root/templates/single_photo.tpl
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2007-06-15 19:12:01 +0000
committerAndreas Unterkircher <unki@netshadow.at>2007-06-15 19:12:01 +0000
commit64aff8eab7dca9b848149d9061a33af0d44f24b9 (patch)
tree9807769061082e091ffb10338782567c6e65036d /templates/single_photo.tpl
parentf679541f88a70088ed06dd751da8dc5eda5c2c74 (diff)
display additional infos like Exif data, additional tags, ...
in the single photo view git-svn-id: file:///var/lib/svn/phpfspot/trunk@97 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'templates/single_photo.tpl')
-rw-r--r--templates/single_photo.tpl19
1 files changed, 18 insertions, 1 deletions
diff --git a/templates/single_photo.tpl b/templates/single_photo.tpl
index d2d47c6..adeb9f8 100644
--- a/templates/single_photo.tpl
+++ b/templates/single_photo.tpl
@@ -2,7 +2,8 @@
<table>
<tr>
<td class="index_header" style="text-align: left;">
- <b>Photo {$image_name}</b>, {$c_date}, {$madewith}<br />
+ <b>Photo {$image_name}</b><br />
+ &nbsp;{$description}<br />
</td>
<td class="index_header" style="text-align: right;">
<a href="{$image_url_full}" target="_blank" onclick="click(this);">
@@ -54,6 +55,22 @@
</table>
</div>
</td>
+ <td style="white-space: nowrap;">
+ { if $ExifMadeWith }
+ With: {$ExifMadeWith}<br />
+ { /if }
+ { if $ExifMadeOn }
+ On: {$ExifMadeOn}<br />
+ { /if }
+ { if $ExifOrigResolution }
+ Res: {$ExifOrigResolution}<br />
+ { /if }
+ Size: {$ExifFileSize}kbyte<br />
+ Tagged:<br />
+ { foreach from=$tags key=id item=name }
+ <a href="javascript:Tags('add', '{$id}');" onclick="click(this);">{$name}</a><br />
+ { /foreach }
+ </td>
</tr>
</table>
<!-- /Single photo -->