diff options
author | z0rglub <z0rglub@piwigo.org> | 2004-08-25 21:09:09 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2004-08-25 21:09:09 +0000 |
commit | d8494248fc3df1ac9b688fd5b250de60a50361b2 (patch) | |
tree | 209664043b3f2014be7acd492ba5a3b690c11883 /template/default/admin/configuration.tpl | |
parent | 593574214c8dcbd9fa5bb79060d9bbbc81ffd1fc (diff) |
"show metadata" feature added : you can ask to show metadata (EXIF and IPTC)
on picture.php page. Metadata read functions were moved from
admin/include/functions_metadata.php to include/functions_metadata.inc.php
git-svn-id: http://piwigo.org/svn/trunk@493 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/default/admin/configuration.tpl')
-rw-r--r-- | template/default/admin/configuration.tpl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/template/default/admin/configuration.tpl b/template/default/admin/configuration.tpl index b2eb8f22b..d1a528b6d 100644 --- a/template/default/admin/configuration.tpl +++ b/template/default/admin/configuration.tpl @@ -197,6 +197,26 @@ <input type="radio" class="radio" name="use_iptc" value="false" {USE_IPTC_NO} />{L_NO} </td> </tr> + <tr> + <td> + <strong>{L_SHOW_EXIF} :</strong> + <br /><span class="small">{L_SHOW_EXIF_INFO}</span> + </td> + <td class="row1"> + <input type="radio" class="radio" name="show_exif" value="true" {SHOW_EXIF_YES} />{L_YES} + <input type="radio" class="radio" name="show_exif" value="false" {SHOW_EXIF_NO} />{L_NO} + </td> + </tr> + <tr> + <td> + <strong>{L_SHOW_IPTC} :</strong> + <br /><span class="small">{L_SHOW_IPTC_INFO}</span> + </td> + <td class="row1"> + <input type="radio" class="radio" name="show_iptc" value="true" {SHOW_IPTC_YES} />{L_YES} + <input type="radio" class="radio" name="show_iptc" value="false" {SHOW_IPTC_NO} />{L_NO} + </td> + </tr> <!-- BEGIN remote_sites --> <tr> <th colspan="2" align="center">{#remote_site}</th> |