1 | <div class="content"> |
---|
2 | |
---|
3 | <h3>{'An_advice_about'|@translate} {$ADVICE_ABOUT}</h3> |
---|
4 | <h4>{$ADVICE_TEXT}</h4> |
---|
5 | <table summary="Admin advices summary"> |
---|
6 | {if isset($More)} |
---|
7 | <tr> |
---|
8 | <td style="text-align: left; width: 50%;"> |
---|
9 | {foreach from=$More item=advice} |
---|
10 | {$advice}<BR /> |
---|
11 | {/foreach} |
---|
12 | <br /> |
---|
13 | </td> |
---|
14 | <td style="text-align: right; width: 20%;"> |
---|
15 | {if isset($thumbnail.IMAGE)} |
---|
16 | <a href="{$thumbnail.U_MODIFY}" title="{'link_info_image'|@translate}"> |
---|
17 | <img class="thumbnail" src="{$thumbnail.IMAGE}" |
---|
18 | alt="{$thumbnail.IMAGE_ALT}" title="{$thumbnail.IMAGE_TITLE}"></a> |
---|
19 | </td><td style="text-align: left;"> |
---|
20 | <img src="{$themeconf.admin_icon_dir}/{$thumbnail.NAME}check.png" |
---|
21 | alt="{$thumbnail.IMAGE_ALT}" title="{$thumbnail.IMAGE_TITLE}"> {'Name'|@translate}<br /> |
---|
22 | <img src="{$themeconf.admin_icon_dir}/{$thumbnail.COMMENT}check.png" |
---|
23 | alt="{$thumbnail.IMAGE_ALT}" title="{$thumbnail.IMAGE_TITLE}"> {'Description'|@translate}<br /> |
---|
24 | <img src="{$themeconf.admin_icon_dir}/{$thumbnail.AUTHOR}check.png" |
---|
25 | alt="{$thumbnail.IMAGE_ALT}" title="{$thumbnail.IMAGE_TITLE}"> {'Author'|@translate}<br /> |
---|
26 | <img src="{$themeconf.admin_icon_dir}/{$thumbnail.CREATE_DATE}check.png" |
---|
27 | alt="{$thumbnail.IMAGE_ALT}" title="{$thumbnail.IMAGE_TITLE}"> {'Creation date'|@translate}<br /> |
---|
28 | <img src="{$themeconf.admin_icon_dir}/{$thumbnail.METADATA}check.png" |
---|
29 | alt="{$thumbnail.IMAGE_ALT}" title="{$thumbnail.IMAGE_TITLE}"> {'Metadata'|@translate}<br /> |
---|
30 | <img src="{$themeconf.admin_icon_dir}/{$thumbnail.TAGS}check.png" |
---|
31 | alt="{$thumbnail.IMAGE_ALT}" title="{$thumbnail.IMAGE_TITLE}"> {'Tags'|@translate} ({$thumbnail.NUM_TAGS}) |
---|
32 | {/if} |
---|
33 | </td> |
---|
34 | </tr> |
---|
35 | {/if} |
---|
36 | </table> |
---|
37 | <div class="summary"> |
---|
38 | <h4>External summary</h4> |
---|
39 | <ul>Database Analysis<br /> |
---|
40 | {if ($pwgsize != $size)} |
---|
41 | - Space used by {$prefixTable} tables: {$pwgsize}<br /> |
---|
42 | {/if} |
---|
43 | - Space used by all tables: {$size}<br /> |
---|
44 | - {$checked_tables}<br /> |
---|
45 | - Unused allocated space by {$prefixTable} tables: {$pwgspacef}<br /> |
---|
46 | {if ($spacef > 0 and $pwgspacef != $spacef)} |
---|
47 | - Unused allocated space: {$spacef}<br /> |
---|
48 | {/if} |
---|
49 | {if ($spacef > 0)} |
---|
50 | Useful links: |
---|
51 | <a class="internal" href="{$U_maintenance}">{'repair and optimize database'|@translate}</a> - |
---|
52 | {else} |
---|
53 | MySQL documentation: |
---|
54 | {/if} |
---|
55 | <a class="external" href="http://dev.mysql.com/doc/" onclick="window.open(this.href, ''); return false;">MySQL</a> |
---|
56 | <br /><br /> |
---|
57 | Templates generated on {$smarty.now|date_format:"%A, %B %e, %Y - %r"} by |
---|
58 | <a class="external" href="http://www.smarty.net/" onclick="window.open(this.href, ''); return false;">Smarty</a> |
---|
59 | {$smarty.version} |
---|
60 | </ul> |
---|
61 | </div> |
---|
62 | </div> |
---|
63 | <script type="text/javascript">// <![CDATA[ |
---|
64 | {literal}$(document).ready(function() { |
---|
65 | $("img.thumbnail").fadeTo("slow", 0.6); // Opacity on page load |
---|
66 | $("img.thumbnail").hover(function(){ |
---|
67 | $(this).fadeTo("slow", 1.0); // Opacity on hover |
---|
68 | },function(){ |
---|
69 | $(this).fadeTo("slow", 0.6); // Opacity on mouseout |
---|
70 | }); |
---|
71 | });{/literal} |
---|
72 | // ]]> |
---|
73 | </script> |
---|