Files
Piwigo/template/default/admin/intro.tpl
plegall 20f0541697 - modification : major simplification of admin.php. Titles are managed by
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
2005-08-17 14:25:38 +00:00

44 lines
962 B
Smarty

<h1>{lang:title_default}</h1>
<dl>
<dt>{lang:PhpWebGallery version}</dt>
<dd>
<ul>
<li>PhpWebGallery {PWG_VERSION}</li>
<li><a href="{U_CHECK_UPGRADE}">{lang:Check for upgrade}</a></li>
</ul>
</dd>
<dt>{lang:Environment}</dt>
<dd>
<ul>
<li>{lang:Operating system}: {OS}</li>
<li>PHP: {PHP_VERSION} (<a href="{U_PHPINFO}">{lang:Show info}</a>)</li>
<li>MySQL: {MYSQL_VERSION}</li>
</ul>
</dd>
<dt>{lang:Database}</dt>
<dd>
<ul>
<li>
{DB_ELEMENTS}
<!-- BEGIN waiting -->
(<a href="{waiting.URL}">{waiting.INFO}</a>)
<!-- END waiting -->
</li>
<li>{DB_CATEGORIES}</li>
<li>{DB_USERS}</li>
<li>{DB_GROUPS}</li>
<li>
{DB_COMMENTS}
<!-- BEGIN unvalidated -->
(<a href="{unvalidated.URL}">{unvalidated.INFO}</a>)
<!-- END unvalidated -->
</li>
<li>{DB_DATE}</li>
</ul>
</dd>
</dl>