#338: Affichage de la version

This commit is contained in:
Mindiell 2019-03-20 10:58:06 +01:00 committed by Liquidsoul
parent b272a5a7a1
commit 2624f2da10
No known key found for this signature in database
GPG Key ID: 15983D72D696931D
3 changed files with 8 additions and 0 deletions

View File

@ -28,6 +28,7 @@ $smarty->caching = false;
$serverName = isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : '';
$smarty->assign('APPLICATION_NAME', NOMAPPLICATION);
$smarty->assign('APPLICATION_VERSION', VERSION);
$smarty->assign('SERVER_URL', Utils::get_server_name());
$smarty->assign('SCRIPT_NAME', $_SERVER['SCRIPT_NAME']);
$smarty->assign('TITLE_IMAGE', IMAGE_TITRE);

View File

@ -24,6 +24,12 @@ body {
background:#eee;
}
.footer {
text-align: right;
margin-bottom: 1em;
margin-right: 1em;
}
.trait { /* hr */
background-color: #EEE;
height: 5px;

View File

@ -49,5 +49,6 @@
{if isset($tracking_code)}
{$tracking_code}
{/if}
<section class="footer">{__('Version', 'Version : ')}{$APPLICATION_VERSION|html}</section>
</body>
</html>