ajout de nouvelles templates
darcs-hash:20061007112017-f46e9-1ae3f25bb21705a99669d4956423aae42caf577f.gz
This commit is contained in:
parent
0832aa87c2
commit
d9b34571ee
4 changed files with 124 additions and 39 deletions
29
intranet/templates/MonComptePaypalCancel.tmpl
Normal file
29
intranet/templates/MonComptePaypalCancel.tmpl
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||||
|
<title>Cr@nsIntranet</title>
|
||||||
|
|
||||||
|
<!-- ++++++++++++++++++++++++++ stylesheets +++++++++++++++++++++++++++ -->
|
||||||
|
<link rel="stylesheet" type="text/css" href="/static/css/monCompte.css" />
|
||||||
|
|
||||||
|
<!-- ++++++++++++++++++++++++++++ scripts +++++++++++++++++++++++++++++ -->
|
||||||
|
<script src="/static/MochiKit/MochiKit.js" type="text/javascript"></script>
|
||||||
|
<script src="/static/MochiKit/New.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="popupInnerBody">
|
||||||
|
<h2>Paiement annulé</h2>
|
||||||
|
<p>Ton compte impressions sera crédité dés que la facture sera réglée.</p>
|
||||||
|
<p>Tu peux régler la facture plus tard en allant dans <a href="/sous/">Mes Factures</a></p>
|
||||||
|
<div class="liens">
|
||||||
|
<a href="./">Retour</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
31
intranet/templates/MonComptePaypalReturn.tmpl
Normal file
31
intranet/templates/MonComptePaypalReturn.tmpl
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
#import cherrypy
|
||||||
|
#set bugMail = cherrypy.config.get("mail.bugreport", "nounous@crans.org")
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||||
|
<title>Cr@nsIntranet</title>
|
||||||
|
|
||||||
|
<!-- ++++++++++++++++++++++++++ stylesheets +++++++++++++++++++++++++++ -->
|
||||||
|
<link rel="stylesheet" type="text/css" href="/static/css/monCompte.css" />
|
||||||
|
|
||||||
|
<!-- ++++++++++++++++++++++++++++ scripts +++++++++++++++++++++++++++++ -->
|
||||||
|
<script src="/static/MochiKit/MochiKit.js" type="text/javascript"></script>
|
||||||
|
<script src="/static/MochiKit/New.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="popupInnerBody">
|
||||||
|
<h2>Paiement terminé</h2>
|
||||||
|
<p>Ton compte impressions sera crédité dans quelques minutes.</p>
|
||||||
|
<p>N'hésite pas à nous envoyer tes remarques et/ou suggestions à <a href="mailto:$bugMail">$bugMail</a></p>
|
||||||
|
<div class="liens">
|
||||||
|
<a href="./">Retour</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body></html>
|
23
intranet/templates/error.tmpl
Normal file
23
intranet/templates/error.tmpl
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
<!-- img src="/static/images/petitCr@ns.png" alt="logocr@ns" / -->
|
||||||
|
<h1 style="background:#ddd; float:left; width:50%; padding:10px 20px 10px 10px">Erreur $status</h1>
|
||||||
|
|
||||||
|
<div style="clear:both;">
|
||||||
|
|
||||||
|
<form action="send_error_repport" method="POST">
|
||||||
|
<fieldset style="float:left;"><legend>Envoyer un rapport</legend>
|
||||||
|
<input type="hidden" name="status" value="$status">
|
||||||
|
<input type="hidden" name="error_message" value="$message">
|
||||||
|
<label for="user_message">Aidez-nous à améliorer l'intranet en nous indiquant comment l'erreur est apparue:</label><br />
|
||||||
|
<textarea style="width:40em;height:10em;" name="user_message"></textarea>
|
||||||
|
<div style="text-align:right;width:100%;border:thin red solid;">
|
||||||
|
<button name="send" value="oui">Envoyer le rapport et retourner à la page d'accueil</button>
|
||||||
|
</div>
|
||||||
|
</fieldset>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<pre style="border:thin black dashed; padding:10px; margin:20px; float:left; color:gray;">$message</pre>
|
||||||
|
|
||||||
|
<a href="/" style="display:block;clear:both;">Retour à la page d'accueil</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div style="clear:both;"></div>
|
|
@ -1,3 +1,5 @@
|
||||||
|
#import cherrypy
|
||||||
|
#set bugMail = cherrypy.config.get("mail.bugreport", "nounous@crans.org")
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" ><head> <meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" ><head> <meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,7 +40,7 @@ $page
|
||||||
</div>
|
</div>
|
||||||
<div id="mainFooter"><hr /><a href="http://www.crans.org/">Site du cr@ns</a> <a href="http://wiki.crans.org/">wiki</a><br /><a href="http://wiki/ContactsCrans">Contact Cr@ns</a><br />
|
<div id="mainFooter"><hr /><a href="http://www.crans.org/">Site du cr@ns</a> <a href="http://wiki.crans.org/">wiki</a><br /><a href="http://wiki/ContactsCrans">Contact Cr@ns</a><br />
|
||||||
<div id="topContentMessage" style="font-style:italic;text-align:center;">
|
<div id="topContentMessage" style="font-style:italic;text-align:center;">
|
||||||
L'intranet est en version beta, aidez-nous à l'améliorer en nous envoyant vos remarques et en nous signalant tout problème à <a href="mailto:nounous@crans.org">nounous@crans.org</a>
|
L'intranet est en version beta, aidez-nous à l'améliorer en nous envoyant vos remarques et en nous signalant tout problème à <a href="mailto:$bugMail">$bugMail</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
#if $environment == 'development'
|
#if $environment == 'development'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue