mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-06 09:52:29 +02:00
- change "->" in a beautiful arrow :-) for categories level in admin
- single category management screen updated : commentable and uploadable properties added, full directory displayed, status and visibility properties update uses inheritance, user favorite elements check moved to somewhere else : would be too long to calculate here for too many users - new admin functions set_cat_visible and set_cat_status : visibility and status updates can be done in cat_options and cat_modify - language : differentiate "locked" (state) and "lock" (action) git-svn-id: http://piwigo.org/svn/trunk@632 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -7,8 +7,8 @@
|
||||
<table style="width:100%;">
|
||||
<!-- BEGIN server -->
|
||||
<tr>
|
||||
<td style="width:50%;">{L_REMOTE_SITE}</td>
|
||||
<td class="row1">{SITE_URL}</td>
|
||||
<td style="width:50%;"><strong>{L_REMOTE_SITE}</strong></td>
|
||||
<td class="row1">{server.SITE_URL}</td>
|
||||
</tr>
|
||||
<!-- END server -->
|
||||
<tr>
|
||||
@@ -32,17 +32,33 @@
|
||||
<tr>
|
||||
<td><strong>{L_EDIT_STATUS} :</strong><br /><span class="small">{L_EDIT_STATUS_INFO}</span></td>
|
||||
<td class="row1">
|
||||
<input type="radio" class="radio" name="status" value="public" {ACCESS_FREE} />{L_ACCESS_FREE}
|
||||
<input type="radio" class="radio" name="status" value="private" {ACCESS_RESTRICTED} />{L_ACCESS_RESTRICTED}
|
||||
<input type="radio" class="radio" name="status" value="public" {STATUS_PUBLIC} />{L_STATUS_PUBLIC}
|
||||
<input type="radio" class="radio" name="status" value="private" {STATUS_PRIVATE} />{L_STATUS_PRIVATE}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<tr>
|
||||
<td><strong>{L_EDIT_LOCK} :</strong><br /><span class="small">{L_EDIT_LOCK_INFO}</span></td>
|
||||
<td class="row1">
|
||||
<input type="radio" class="radio" name="visible" value="false" {LOCKED} />{L_YES}
|
||||
<input type="radio" class="radio" name="visible" value="true" {UNLOCKED} />{L_NO}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>{L_EDIT_COMMENTABLE} :</strong><br /><span class="small">{L_EDIT_COMMENTABLE_INFO}</span></td>
|
||||
<td class="row1">
|
||||
<input type="radio" class="radio" name="commentable" value="false" {COMMENTABLE_TRUE} />{L_YES}
|
||||
<input type="radio" class="radio" name="commentable" value="true" {COMMENTABLE_FALSE} />{L_NO}
|
||||
</td>
|
||||
</tr>
|
||||
<!-- BEGIN upload -->
|
||||
<tr>
|
||||
<td><strong>{L_EDIT_UPLOADABLE} :</strong><br /><span class="small">{L_EDIT_UPLOADABLE_INFO}</span></td>
|
||||
<td class="row1">
|
||||
<input type="radio" class="radio" name="uploadable" value="true" {UPLOADABLE_TRUE} />{L_YES}
|
||||
<input type="radio" class="radio" name="uploadable" value="false" {UPLOADABLE_FALSE} />{L_NO}
|
||||
</td>
|
||||
</tr>
|
||||
<!-- END upload -->
|
||||
<!-- BEGIN parent -->
|
||||
<tr>
|
||||
<td>{#cat_parent}</td>
|
||||
@@ -69,4 +85,4 @@
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</form>
|
||||
|
||||
Reference in New Issue
Block a user