source: branches/2.0/admin/template/goto/intro.tpl @ 4894

Last change on this file since 4894 was 3723, checked in by rvelices, 15 years ago

merge r3722 from trunk

  • comment a css rule in admin page (was making Firefox very slow on form controls activation
  • remove usage of jquery.dimensions because not required
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 2.8 KB
Line 
1{* $Id: intro.tpl 3723 2009-08-07 04:53:38Z rvelices $ *}
2{known_script id="jquery" src=$ROOT_URL|@cat:"template-common/lib/jquery.packed.js"}
3{known_script id="jquery.cluetip" src=$ROOT_URL|@cat:"template-common/lib/plugins/jquery.cluetip.packed.js"}
4
5<script type="text/javascript">
6jQuery().ready(function(){ldelim}
7  jQuery('.cluetip').cluetip({ldelim}
8    width: 300,
9    splitTitle: '|'
10  });
11});
12</script>
13
14<h2>{'title_default'|@translate}</h2>
15<dl style="padding-top: 30px;">
16  <dt>{'Piwigo version'|@translate}</dt>
17  <dd>
18    <ul>
19      <li><a href="{$PHPWG_URL}"  onclick="window.open(this.href, '');
20          return false;">Piwigo</a> {$PWG_VERSION}</li>
21      <li><a href="{$U_CHECK_UPGRADE}">{'Check for upgrade'|@translate}</a></li>
22{if isset($SUBSCRIBE_BASE_URL)}
23      <li><a href="{$SUBSCRIBE_BASE_URL}{$EMAIL}" onclick="window.open(this.href); return false;" class="cluetip" title="{'Piwigo Announcements Newsletter'|@translate}|{'Subscribe to Piwigo Announcements Newsletter'|@translate|htmlspecialchars|nl2br}">{'Subscribe %s to Piwigo Announcements Newsletter'|@translate|@sprintf:$EMAIL}</a></li>
24{/if}
25    </ul>
26  </dd>
27
28  <dt>{'Environment'|@translate}</dt>
29  <dd>
30    <ul>
31      <li>{'Operating system'|@translate}: {$OS}</li>
32      <li>PHP: {$PHP_VERSION} (<a href="{$U_PHPINFO}" onclick="window.open(this.href, '');
33          return false;">{'Show info'|@translate}</a>)  [{$PHP_DATATIME}]</li>
34      <li>MySQL: {$MYSQL_VERSION} [{$DB_DATATIME}]</li>
35    </ul>
36  </dd>
37
38  <dt>{'Database'|@translate}</dt>
39  <dd>
40    <ul>
41      <li>
42        {$DB_ELEMENTS}
43        {if isset($waiting)}
44        (<a href="{$waiting.URL}">{$waiting.INFO}</a>)
45        {/if}
46
47        {if isset($first_added)}
48        ({$first_added.DB_DATE})
49        {/if}
50      </li>
51      <li>{$DB_CATEGORIES} ({$DB_IMAGE_CATEGORY})</li>
52      <li>{$DB_TAGS} ({$DB_IMAGE_TAG})</li>
53      <li>{$DB_USERS}</li>
54      <li>{$DB_GROUPS}</li>
55      <li>
56        {$DB_COMMENTS}
57        {if isset($unvalidated)}
58        (<a href="{$unvalidated.URL}">{$unvalidated.INFO}</a>)
59        {/if}
60      </li>
61    </ul>
62  </dd>
63</dl>
64
65
66<form name="QuickSynchro" action="{$U_CAT_UPDATE}" method="post" id="QuickSynchro" style="display: block; text-align:right;">
67<div>
68<input type="hidden" name="sync" value="files" checked="checked" />
69<input type="hidden" name="display_info" value="1" checked="checked" />
70<input type="hidden" name="add_to_caddie" value="1" checked="checked" />
71<input type="hidden" name="privacy_level" value="0" checked="checked" />
72<input type="hidden" name="sync_meta" checked="checked"/>
73<input type="hidden" name="simulate" value="0" />
74<input type="hidden" name="subcats-included" value="1" checked="checked"/>
75</div>
76<div class="bigbutton">
77<span class="bigtext">{'Quick Local Synchronization'|@translate}</span>
78<input type="submit" value="" name="submit">
79</div>
80</form>
Note: See TracBrowser for help on using the repository browser.