diff options
author | ddtddt <ddtddt@piwigo.org> | 2010-03-11 21:02:06 +0000 |
---|---|---|
committer | ddtddt <ddtddt@piwigo.org> | 2010-03-11 21:02:06 +0000 |
commit | 00ad9216aa0cd60c4781d5993b7b237d3149fabf (patch) | |
tree | 5a50f46617ae1a5c87f24ad0ffbce28b429db410 /template | |
parent | f5bc34b47755d0e785a1541d747569b9b1491035 (diff) |
[trunk] bug:1498 - Customize the rows
git-svn-id: http://piwigo.org/svn/trunk@5109 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template')
-rw-r--r-- | template/default/picture.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/default/picture.tpl b/template/default/picture.tpl index f20e09455..eb68279e8 100644 --- a/template/default/picture.tpl +++ b/template/default/picture.tpl @@ -234,11 +234,11 @@ y.callService( {if isset($metadata)} <table id="Metadata" class="infoTable2" summary="Some more (technical) info about this picture"> {foreach from=$metadata item=meta} - <tr> + <tr id="{$meta.TITLE}"> <th colspan="2">{$meta.TITLE}</th> </tr> {foreach from=$meta.lines item=value key=label} - <tr> + <tr id="{$label}" > <td class="label">{$label}</td> <td class="value">{$value}</td> </tr> |