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

Last change on this file since 10511 was 9553, checked in by patdenice, 13 years ago

bug:2214
Update jQuery to 1.5.1 and cluetip to 1.0.7.
Now cluetip work on IE9.

  • Property svn:eol-style set to LF
File size: 2.8 KB
Line 
1{combine_script id='jquery.cluetip' load='async' require='jquery' path='themes/default/js/plugins/jquery.cluetip.js'}
2
3{footer_script require='jquery.cluetip'}
4jQuery().ready(function(){ldelim}
5        jQuery('.cluetip').cluetip({ldelim}
6                width: 300,
7                splitTitle: '|',
8                positionBy: 'bottomTop'
9        });
10});
11{/footer_script}
12
13<h2>{'Piwigo Administration'|@translate}</h2>
14<dl style="padding-top: 30px;">
15  <dt>{'Piwigo version'|@translate}</dt>
16  <dd>
17    <ul>
18      <li><a href="{$PHPWG_URL}" class="externalLink">Piwigo</a> {$PWG_VERSION}</li>
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($first_added)}
41        ({$first_added.DB_DATE})
42        {/if}
43      </li>
44      <li>{$DB_CATEGORIES} ({$DB_IMAGE_CATEGORY})</li>
45      <li>{$DB_TAGS} ({$DB_IMAGE_TAG})</li>
46      <li>{$DB_USERS}</li>
47      <li>{$DB_GROUPS}</li>
48      <li>
49        {$DB_COMMENTS}
50        {if isset($unvalidated)}
51        (<a href="{$unvalidated.URL}">{$unvalidated.INFO}</a>)
52        {/if}
53      </li>
54    </ul>
55  </dd>
56</dl>
57
58{if $ENABLE_SYNCHRONIZATION}
59<form name="QuickSynchro" action="{$U_CAT_UPDATE}" method="post" id="QuickSynchro" style="display: block; text-align:right;">
60<div>
61<input type="hidden" name="sync" value="files" checked="checked">
62<input type="hidden" name="display_info" value="1" checked="checked">
63<input type="hidden" name="add_to_caddie" value="1" checked="checked">
64<input type="hidden" name="privacy_level" value="0" checked="checked">
65<input type="hidden" name="sync_meta" checked="checked">
66<input type="hidden" name="simulate" value="0">
67<input type="hidden" name="subcats-included" value="1" checked="checked">
68</div>
69<div class="bigbutton">
70<span class="bigtext">{'Quick Local Synchronization'|@translate}</span>
71<input type="submit" value="" name="submit">
72</div>
73</form>
74{/if}
Note: See TracBrowser for help on using the repository browser.