diff options
author | plegall <plg@piwigo.org> | 2005-08-14 11:55:35 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-08-14 11:55:35 +0000 |
commit | c501facfa5447443be872c56377cb9141c939196 (patch) | |
tree | 98398fcb58b01c5e49a470ead3cbd75d86b6a5fa /template/default | |
parent | 194bf3ca48dc0a8ac5fb6bcd1c777367dfa2dbcc (diff) |
- new : ability to set an element as representant of its category directly
from picture.php screen.
- improvement : dedicated icon to add elements into caddie. Ths icon is
displayed in the category title bar.
git-svn-id: http://piwigo.org/svn/trunk@811 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/default/category.tpl | 13 | ||||
-rw-r--r-- | template/default/default.css | 5 | ||||
-rw-r--r-- | template/default/picture.tpl | 9 | ||||
-rw-r--r-- | template/default/theme/caddie_add.png | bin | 0 -> 1185 bytes | |||
-rw-r--r-- | template/default/theme/representative.png | bin | 0 -> 592 bytes |
5 files changed, 22 insertions, 5 deletions
diff --git a/template/default/category.tpl b/template/default/category.tpl index 437652138..0d523c129 100644 --- a/template/default/category.tpl +++ b/template/default/category.tpl @@ -88,7 +88,14 @@ </td> <td style="padding:0px 10px 0px 10px; width:99%;" valign="top"> <div class="home"> - <div class="titrePage">{TITLE}</div> + <div class="titrePage"> + <ul class="categoryActions"> + <!-- BEGIN caddie --> + <li><a href="{U_CADDIE}" title="{lang:add to caddie}"><img src="./template/default/theme/caddie_add.png" /></a></li> + <!-- END caddie --> + </ul> + {TITLE} + </div> <!-- BEGIN calendar --> <div class="navigationBar">{calendar.YEARS_NAV_BAR}</div> <div class="navigationBar">{calendar.MONTHS_NAV_BAR}</div> @@ -123,10 +130,6 @@ <!-- END line --> </table> <!-- END thumbnails --> - <!-- BEGIN caddie --> - <br /> - <div class="navigationBar"><a href="{U_CADDIE}">add to caddie</a></div> - <!-- END caddie --> <!-- BEGIN cat_infos --> <!-- BEGIN navigation --> <div class="navigationBar">{cat_infos.navigation.NAV_BAR}</div> diff --git a/template/default/default.css b/template/default/default.css index 5091b7431..d326f45ff 100644 --- a/template/default/default.css +++ b/template/default/default.css @@ -414,6 +414,11 @@ form#categoryOrdering ul.categoryActions { margin-top: 5px; } +div.titrePage ul.categoryActions { + float: right; + margin: 0; +} + div#adminMain>ul.categoryActions { text-align: center; } diff --git a/template/default/picture.tpl b/template/default/picture.tpl index 2633113d8..e43fe7b14 100644 --- a/template/default/picture.tpl +++ b/template/default/picture.tpl @@ -28,6 +28,15 @@ <img src="template/default/theme/metadata.gif" alt="{L_PICTURE_METADATA}" /> </a> </div> + +<!-- BEGIN representative --> +<div class="imgMenu" id="left"> + <a href="{representative.URL}" title="{lang:set as category representative}"> + <img src="template/default/theme/representative.png" alt="{lang:representative}" /> + </a> +</div> +<!-- END representative --> + <!-- BEGIN favorite --> <div class="imgMenu" id="right"> <a href="{favorite.U_FAVORITE}" title="{favorite.FAVORITE_HINT}"> diff --git a/template/default/theme/caddie_add.png b/template/default/theme/caddie_add.png Binary files differnew file mode 100644 index 000000000..425109697 --- /dev/null +++ b/template/default/theme/caddie_add.png diff --git a/template/default/theme/representative.png b/template/default/theme/representative.png Binary files differnew file mode 100644 index 000000000..ea8a07233 --- /dev/null +++ b/template/default/theme/representative.png |