source: trunk/admin/themes/default/template/intro.tpl @ 6348

Last change on this file since 6348 was 6348, checked in by plg, 14 years ago

merge r6347 from branch 2.1 to trunk

bug 1672: replace the language key where it's used.

File size: 2.8 KB
Line 
1{known_script id="jquery" src=$ROOT_URL|@cat:"themes/default/js/jquery.packed.js"}
2{known_script id="jquery.cluetip" src=$ROOT_URL|@cat:"themes/default/js/plugins/jquery.cluetip.packed.js"}
3
4<script type="text/javascript">
5jQuery().ready(function(){ldelim}
6  jQuery('.cluetip').cluetip({ldelim}
7    width: 300,
8    splitTitle: '|',
9    positionBy: 'bottomTop'
10  });
11});
12</script>
13
14<h2>{'Piwigo administration'|@translate}</h2>
15<dl style="padding-top: 30px;">
16  <dt>{'Piwigo version'|@translate}</dt>
17  <dd>
18    <ul>
19      <li><a href="{$U_CHECK_UPGRADE}">{'Check for upgrade'|@translate}</a></li>
20{if isset($SUBSCRIBE_BASE_URL)}
21      <li><a href="{$SUBSCRIBE_BASE_URL}{$EMAIL}" class="externalLink cluetip" title="{'Piwigo Announcements Newsletter'|@translate}|{'Keep in touch with Piwigo project, subscribe to Piwigo Announcement Newsletter. You will receive emails when a new release is available (sometimes including a security bug fix, it\'s important to know and upgrade) and when major events happen to the project. Only a few emails a year.'|@translate|htmlspecialchars|nl2br}">{'Subscribe %s to Piwigo Announcements Newsletter'|@translate|@sprintf:$EMAIL}</a></li>
22{/if}
23    </ul>
24  </dd>
25
26  <dt>{'Environment'|@translate}</dt>
27  <dd>
28    <ul>
29      <li>{'Operating system'|@translate}: {$OS}</li>
30      <li>PHP: {$PHP_VERSION} (<a href="{$U_PHPINFO}" class="externalLink">{'Show info'|@translate}</a>)  [{$PHP_DATATIME}]</li>
31      <li>{$DB_ENGINE}: {$DB_VERSION} [{$DB_DATATIME}]</li>
32    </ul>
33  </dd>
34
35  <dt>{'Database'|@translate}</dt>
36  <dd>
37    <ul>
38      <li>
39        {$DB_ELEMENTS}
40        {if isset($waiting)}
41        (<a href="{$waiting.URL}">{$waiting.INFO}</a>)
42        {/if}
43
44        {if isset($first_added)}
45        ({$first_added.DB_DATE})
46        {/if}
47      </li>
48      <li>{$DB_CATEGORIES} ({$DB_IMAGE_CATEGORY})</li>
49      <li>{$DB_TAGS} ({$DB_IMAGE_TAG})</li>
50      <li>{$DB_USERS}</li>
51      <li>{$DB_GROUPS}</li>
52      <li>
53        {$DB_COMMENTS}
54        {if isset($unvalidated)}
55        (<a href="{$unvalidated.URL}">{$unvalidated.INFO}</a>)
56        {/if}
57      </li>
58    </ul>
59  </dd>
60</dl>
61
62
63<form name="QuickSynchro" action="{$U_CAT_UPDATE}" method="post" id="QuickSynchro" style="display: block; text-align:right;">
64<div>
65<input type="hidden" name="sync" value="files" checked="checked">
66<input type="hidden" name="display_info" value="1" checked="checked">
67<input type="hidden" name="add_to_caddie" value="1" checked="checked">
68<input type="hidden" name="privacy_level" value="0" checked="checked">
69<input type="hidden" name="sync_meta" checked="checked">
70<input type="hidden" name="simulate" value="0">
71<input type="hidden" name="subcats-included" value="1" checked="checked">
72</div>
73<div class="bigbutton">
74<span class="bigtext">{'Quick Local Synchronization'|@translate}</span>
75<input type="submit" value="" name="submit">
76</div>
77</form>
Note: See TracBrowser for help on using the repository browser.