diff options
author | z0rglub <z0rglub@piwigo.org> | 2004-10-24 18:59:10 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2004-10-24 18:59:10 +0000 |
commit | 691a834cd35825e518f5bdb92bc9bd3eebdf9c5e (patch) | |
tree | ce5a00beb49a7e99021cf8fafa6e72bc1584e2c0 /template/default | |
parent | 93fa5c6bae0ae0fdfaea1ec40e6b5d06e3f7d771 (diff) |
- new column : metadata synchronization
- picture for each category is segmented in src, alt and title -> no HTML
code in cat_list.php
git-svn-id: http://piwigo.org/svn/trunk@584 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/default')
-rw-r--r-- | template/default/admin/cat_list.tpl | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/template/default/admin/cat_list.tpl b/template/default/admin/cat_list.tpl index dbc59d487..d78eb6eb1 100644 --- a/template/default/admin/cat_list.tpl +++ b/template/default/admin/cat_list.tpl @@ -7,12 +7,19 @@ </ul> </div> <!-- END errors --> +<!-- BEGIN infos --> +<div class="info"> + <!-- BEGIN info --> + <li>{infos.info.INFO}</li> + <!-- END info --> +</div> +<!-- END infos --> <div class="admin">{CATEGORIES_NAV}</div> <table style="width:100%;"> <!-- BEGIN category --> <tr> - <td style="width:1px;padding:5px;">{category.CATEGORY_IMG}</td> - <td style="width:50%;text-align:left;"><a class="titreImg" href="{category.U_CATEGORY}">{category.CATEGORY_NAME}</a> + <td style="width:1px;padding:5px;"><img src="{category.CATEGORY_IMG_SRC}" alt="{category.CATEGORY_IMG_ALT}" title="{category.CATEGORY_IMG_TITLE}" /></td> + <td style="width:40%;text-align:left;"><a class="titreImg" href="{category.U_CATEGORY}">{category.CATEGORY_NAME}</a> <br /> <!-- BEGIN storage --> {L_STORAGE} : {category.CATEGORY_DIR} - @@ -35,7 +42,20 @@ <!-- END no_image_info --> </td> <td class="row1" style="width:10%;white-space:nowrap;text-align:center;"> + <!-- BEGIN update --> <a href="{category.U_CAT_UPDATE}">{L_UPDATE}</a> + <!-- END update --> + <!-- BEGIN no_update --> + <span style="color:darkgray;">{L_UPDATE}</span> + <!-- END no_update --> + </td> + <td class="row1" style="width:10%;white-space:nowrap;text-align:center;"> + <!-- BEGIN metadata --> + <a href="{category.U_CAT_METADATA}">{L_UPDATE_METADATA}</a> + <!-- END metadata --> + <!-- BEGIN no_metadata --> + <span style="color:darkgray;">{L_UPDATE_METADATA}</span> + <!-- END no_metadata --> </td> <td class="row1" style="width:10%;white-space:nowrap;text-align:center;"> <!-- BEGIN virtual --> @@ -52,4 +72,4 @@ {L_ADD_VIRTUAL} : <input type="text" name="virtual_name" /> <input type="hidden" name="rank" value="{NEXT_RANK}"/> <input type="submit" value="{L_SUBMIT}" class="bouton" name="submit" /> -</form>
\ No newline at end of file +</form> |