diff options
author | vdigital <vdigital@piwigo.org> | 2008-12-07 16:28:34 +0000 |
---|---|---|
committer | vdigital <vdigital@piwigo.org> | 2008-12-07 16:28:34 +0000 |
commit | ced7fa1b98287571589c116bf1da424b9ed5b8de (patch) | |
tree | 05ab5639db1c0ed83d8c57c8a7a9110bc0684109 /admin/template/goto/permalinks.tpl | |
parent | 02f2fa65f15ddd440ee464449cf38e12f9041712 (diff) |
Categories > Permalinks
- it needs more space between "Permalinks" and "Permalinks History" (too crowed)
git-svn-id: http://piwigo.org/svn/branches/2.0@2945 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/template/goto/permalinks.tpl')
-rw-r--r-- | admin/template/goto/permalinks.tpl | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/admin/template/goto/permalinks.tpl b/admin/template/goto/permalinks.tpl index 0f522a858..375853a40 100644 --- a/admin/template/goto/permalinks.tpl +++ b/admin/template/goto/permalinks.tpl @@ -29,13 +29,13 @@ <h3>{'Permalinks'|@translate}</h3> <table class="table2"> <tr class="throw"> - <td>Id {$SORT_ID}</td> - <td>{'Category'|@translate} {$SORT_NAME}</td> - <td>{'Permalink'|@translate} {$SORT_PERMALINK}</td> + <td style="width:20%;">Id {$SORT_ID}</td> + <td style="width:20%;">{'Category'|@translate} {$SORT_NAME}</td> + <td style="width:20%;">{'Permalink'|@translate} {$SORT_PERMALINK}</td> </tr> {foreach from=$permalinks item=permalink name="permalink_loop"} - <tr class="{if $smarty.foreach.permalink_loop.index is odd}row1{else}row2{/if}"> - <td>{$permalink.id}</td> + <tr class="{if $smarty.foreach.permalink_loop.index is odd}row1{else}row2{/if}" style="line-height: 2.2em;"> + <td style="text-align:center;">{$permalink.id}</td> <td>{$permalink.name}</td> <td>{$permalink.permalink}</td> </tr> @@ -45,17 +45,17 @@ <h3>{'Permalink history'|@translate} <a name="old_permalinks"></a></h3> <table class="table2"> <tr class="throw"> - <td>Id {$SORT_OLD_CAT_ID}</td> - <td>{'Category'|@translate}</td> - <td>{'Permalink'|@translate} {$SORT_OLD_PERMALINK}</td> - <td>Deleted on {$SORT_OLD_DATE_DELETED}</td> - <td>Last hit {$SORT_OLD_LAST_HIT}</td> - <td>Hit {$SORT_OLD_HIT}</td> - <td></td> + <td style="width:40px;">Id {$SORT_OLD_CAT_ID}</td> + <td style="width:25%;">{'Category'|@translate}</td> + <td style="width:25%;">{'Permalink'|@translate} {$SORT_OLD_PERMALINK}</td> + <td style="width:15%;">Deleted on {$SORT_OLD_DATE_DELETED}</td> + <td style="width:15%;">Last hit {$SORT_OLD_LAST_HIT}</td> + <td style="width:20px;">Hit {$SORT_OLD_HIT}</td> + <td style="width:5px;"></td> </tr> {foreach from=$deleted_permalinks item=permalink} - <tr> - <td>{$permalink.cat_id}</td> + <tr style="line-height: 2.2em;"> + <td style="text-align:center;">{$permalink.cat_id}</td> <td>{$permalink.name}</td> <td>{$permalink.permalink}</td> <td>{$permalink.date_deleted}</td> |