aboutsummaryrefslogtreecommitdiffstats
path: root/admin/themes/default/template/themes_update.tpl
blob: f83c09ce358e8a3fe6619d32191d9702dc8a97ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{combine_script id='jquery.cluetip' load='async' require='jquery' path='themes/default/js/plugins/jquery.cluetip.packed.js'}
{footer_script require='jquery.cluetip'}
jQuery().ready(function(){ldelim}
	jQuery('.cluetip').cluetip({ldelim}
		width: 300,
		splitTitle: '|'
	});
});
{/footer_script}

<div class="titrePage">
  <h2>{'Check for updates'|@translate}</h2>
</div>

{if isset($themes_not_uptodate)}
<br>
<b>{'Themes which need upgrade'|@translate}</b>
<table class="table2 themes">
<thead>
  <tr class="throw">
    <td>{'Name'|@translate}</td>
    <td>{'Current<br>version'|@translate}</td>
    <td>{'Available<br>version'|@translate}</td>
    <td>{'Actions'|@translate}</td>
  </tr>
</thead>
{foreach from=$themes_not_uptodate item=theme name=themes_loop}
  <tr class="{if $smarty.foreach.themes_loop.index is odd}row1{else}row2{/if}">
    <td><a href="{$theme.EXT_URL}" class="externalLink cluetip" title="{$theme.EXT_NAME}|{$theme.EXT_DESC|htmlspecialchars|nl2br}">{$theme.EXT_NAME}</a></td>
    <td style="text-align:center;">{$theme.VERSION}</td>
    <td style="text-align:center;"><a href="{$theme.EXT_URL}" class="externalLink cluetip" title="{$theme.EXT_NAME}|{$theme.NEW_VER_DESC|htmlspecialchars|nl2br}">{$theme.NEW_VERSION}</a></td>
    <td style="text-align:center;"><a href="{$theme.URL_UPDATE}" onclick="return confirm('{'Are you sure to install this upgrade? You must verify if this version does not need uninstallation.'|@translate|@escape:javascript}');">{'Automatic upgrade'|@translate}</a>
      / <a href="{$theme.URL_DOWNLOAD}">{'Download file'|@translate}</a></td>
  </tr>
{/foreach}
</table>
{/if}


{if isset($themes_uptodate)}
<br>
<b>{'Themes up to date'|@translate}</b>
<table class="table2 plugins">
<thead>
  <tr class="throw">
    <td>{'Name'|@translate}</td>
    <td>{'Version'|@translate}</td>
  </tr>
</thead>
{foreach from=$themes_uptodate item=theme name=themes_loop}
  <tr class="{if $smarty.foreach.themes_loop.index is odd}row1{else}row2{/if}">
    <td><a href="{$theme.URL}" class="externalLink cluetip" title="{$theme.NAME}|{$theme.EXT_DESC|htmlspecialchars|nl2br}">{$theme.NAME}</a></td>
    <td style="text-align:center;"><a href="{$theme.URL}" class="externalLink cluetip" title="{$theme.NAME}|{$theme.VER_DESC|htmlspecialchars|nl2br}">{$theme.VERSION}</a></td>
  </tr>
{/foreach}
</table>
{/if}


{if isset($themes_cant_check)}
<br>
<b>{'Theme versions can\'t be checked'|@translate}</b>
<table class="table2 plugins">
<thead>
  <tr class="throw">
    <td>{'Name'|@translate}</td>
    <td>{'Version'|@translate}</td>
  </tr>
</thead>
{foreach from=$themes_cant_check item=theme name=themes_loop}
  <tr class="{if $smarty.foreach.themes_loop.index is odd}row1{else}row2{/if}">
    <td>{$theme.NAME}</td>
    <td style="text-align:center;">{$theme.VERSION}</td>
  </tr>
{/foreach}
</table>
{/if}