mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-04 12:32:48 +02:00
included page, localized items are managed directly in the template. - new : sub template admin/double_select is included in templates admin/cat_options, admin/user_perm and admin/group_perm. I haven't been able to use it in admin/picture_modify because it seems impossible to have two instance of the same sub-template without interfering. - modification : bug 99, in profile manager, no auto submit when changing language (useless and generate accessibility problem). - improvement : HTML semantically correct for administration menu, simpler syntax, less tags, correct tags (dl/dt/dd instead of div/div). - modification : number of waiting elements and unvalidated comments are displayed in admin/intro instead of administration menu (with a link to the dedicated pages). - deletion : no link to profile from admin/user_list anymore (no need). git-svn-id: http://piwigo.org/svn/trunk@817 68402e56-0260-453c-a942-63ccdbb3a9ee
60 lines
2.0 KiB
Smarty
60 lines
2.0 KiB
Smarty
<h1>{lang:remote_sites}</h1>
|
|
|
|
{REMOTE_SITE_TITLE}
|
|
|
|
<!-- BEGIN update -->
|
|
<div class="admin">{L_RESULT_UPDATE}</div>
|
|
<ul style="text-align:left;">
|
|
<li class="update_summary_new">{update.NB_NEW_CATEGORIES} {L_NB_NEW_CATEGORIES}</li>
|
|
<li class="update_summary_new">{update.NB_NEW_ELEMENTS} {L_NB_NEW_ELEMENTS}</li>
|
|
<li class="update_summary_del">{update.NB_DEL_CATEGORIES} {L_NB_DEL_CATEGORIES}</li>
|
|
<li class="update_summary_del">{update.NB_DEL_ELEMENTS} {L_NB_DEL_ELEMENTS}</li>
|
|
</ul>
|
|
<!-- BEGIN removes -->
|
|
{L_REMOTE_SITE_REMOVED_TITLE}
|
|
<ul style="text-align:left;">
|
|
<!-- BEGIN remote_remove -->
|
|
<li>{update.removes.remote_remove.NAME} {L_REMOTE_SITE_REMOVED}</li>
|
|
<!-- END remote_remove -->
|
|
</ul>
|
|
<!-- END removes -->
|
|
<!-- END update -->
|
|
|
|
<!-- BEGIN remote_output -->
|
|
<div class="remoteOutput">
|
|
<ul>
|
|
<!-- BEGIN remote_line -->
|
|
<li class="{remote_output.remote_line.CLASS}">{remote_output.remote_line.CONTENT}</li>
|
|
<!-- END remote_line -->
|
|
</ul>
|
|
</div>
|
|
<!-- END remote_output -->
|
|
|
|
<!-- BEGIN local -->
|
|
<div class="remoteLocal">
|
|
{L_REMOTE_SITE_LOCAL_FOUND} {local.URL}
|
|
<!-- BEGIN new_site -->
|
|
{L_REMOTE_SITE_LOCAL_NEW}
|
|
<!-- END new_site -->
|
|
[<a href="{local.U_UPDATE}">{L_REMOTE_SITE_LOCAL_UPDATE}</a>]
|
|
</div>
|
|
<!-- END local -->
|
|
|
|
<form action="{F_ACTION}" method="post">
|
|
{L_REMOTE_SITE_CREATE}
|
|
<input type="text" name="galleries_url" value="{F_GALLERIES_URL}" />
|
|
<input class="bouton" type="submit" name="submit" value="{L_SUBMIT}" />
|
|
</form>
|
|
|
|
<table>
|
|
<!-- BEGIN site -->
|
|
<tr>
|
|
<td>{site.NAME}</td>
|
|
<td>[<a href="{site.U_GENERATE}" title="{L_REMOTE_SITE_GENERATE_HINT}">{L_REMOTE_SITE_GENERATE}</a>]</td>
|
|
<td>[<a href="{site.U_UPDATE}" title="{L_REMOTE_SITE_UPDATE_HINT}">{L_REMOTE_SITE_UPDATE}</a>]</td>
|
|
<td>[<a href="{site.U_CLEAN}" title="{L_REMOTE_SITE_CLEAN_HINT}">{L_REMOTE_SITE_CLEAN}</a>]</td>
|
|
<td>[<a href="{site.U_DELETE}" title="{L_REMOTE_SITE_DELETE_HINT}">{L_REMOTE_SITE_DELETE}</a>]</td>
|
|
</tr>
|
|
<!-- END site -->
|
|
</table>
|