skins: add menu.tpl in impact portal skin

This commit is contained in:
Thomas CHEMINEAU 2010-03-15 12:54:48 +00:00
parent 433b1f9180
commit 07d64f8c82
5 changed files with 83 additions and 0 deletions

View File

@ -0,0 +1,30 @@
<TMPL_INCLUDE NAME="header.tpl">
<div id="content">
<div id="content-all">
<div class="title">
<img src="/skins/<TMPL_VAR NAME="SKIN">/images/logo-warn.png" />
<lang en="Attention" fr="Attention" />
</div>
<p></p>
<div id="content-all-info">
<TMPL_IF ERROR403>
<h3><lang en="You have no access authorization for this application" fr="Vous n'avez pas les droits d'acc&egrave;s &agrave; cette application" /></h3>
</TMPL_IF>
<TMPL_IF ERROR500>
<h3><lang en="Error occurs on the server" fr="Une erreur est survenue sur le serveur" /></h3>
</TMPL_IF>
</div>
<div class="panel-buttons">
<button type="button" class="positive" tabindex="1" onclick="location.href='<TMPL_VAR NAME="PORTAL_URL">';return false;">
<lang en="Go to portal" fr="Aller au portail" />
</button>
<button type="button" class="negative" tabindex="2" onclick="location.href='<TMPL_VAR NAME="LOGOUT_URL">';return false;">
<lang en="Logout" fr="Se d&eacute;connecter" />
</button>
</div>
</div>
</div>
<TMPL_INCLUDE NAME="footer.tpl">

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,33 @@
<TMPL_INCLUDE NAME="header.tpl">
<div id="content">
<div id="content-all">
<div class="title">
<img src="/skins/<TMPL_VAR NAME="SKIN">/images/logo-ok.png" />
<TMPL_VAR NAME="AUTH_ERROR">
</div>
<p>
<span class="text-error"><lang en="Connected as" fr="Connect&eacute; en tant que" />: <u><TMPL_VAR NAME="AUTH_USER"></u></span>
<TMPL_IF NAME="DISPLAY_PASSWORD">
-
<a href="#password"><lang en="Reset password" fr="Changer de mot de passe" /></span></a>
</TMPL_IF>
<TMPL_IF NAME="DISPLAY_LOGOUT">
-
<a href="#logout"><lang en="Logout" fr="Se d&eacute;connecter" /></a>
</TMPL_IF>
</p>
<p><lang en="Here are applications your are allowed to access to." fr="Voici la liste des applications auxquelles vous êtes autoris&eacute;es &agrave; acc&eacute;der." /></p>
<TMPL_IF NAME="DISPLAY_APPSLIST">
<div id="content-all-info">
<div id="appslist">
<TMPL_VAR NAME="APPSLIST_MENU">
<!-- <TMPL_VAR NAME="APPSLIST_DESC"> -->
</div>
</div>
</TMPL_IF>
</div>
</div>
<TMPL_INCLUDE NAME="footer.tpl">

View File

@ -217,3 +217,23 @@ div.title img {
border: 0px;
}
/* -------------------------------------------------------------------------- */
/* Applications layer */
/* -------------------------------------------------------------------------- */
#appslist ul.category,
#appslist ul.category li {
margin: 0px;
padding: 0px;
list-style-type: none;
}
#appslist ul.cat-level-1 li.catname span {
display: none;
}
#appslist ul.cat-level-2,
#appslist ul.cat-level-2 li {
display: list-item;
}