Le repo des sources pour le site web des JM2L
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <%inherit file="jm2l:templates/layout.mako"/>
- % if request.user and request.user.uid==1:
- <a style="float:right;" href="/MesJM2L?user=${DispUser.uid}">Editer</a>
- % elif request.user and DispUser.uid==request.user.uid:
- <a style="float:right;" href="/MesJM2L">Editer</a>
- % endif
-
- <div class="row-fluid">
- <div class="span10 offset1">
-
-
- <h2>${DispUser.prenom} ${DispUser.nom}</h2>
-
- <div style="display: inline-block;">
- <p>
- % if DispUser.PhotosLinks or DispUser.bio or DispUser.website:
- <div class="titleborderbox">
- <strong>Son profil</strong>.
- % if DispUser.pseudo:
- (${DispUser.pseudo})
- %endif
- </div>
-
- % if DispUser.PhotosLinks:
- <br />
- <div style="float:right;padding:5px;border:1px solid #eee;background-color:white;">
- % for img_path in DispUser.PhotosLinks:
- <img src="${img_path}" alt="logo" />
- % endfor
- </div>
- % endif
- <div>
- <div style="float:right;">
-
- </div>
- <div class="borderbox">
- % if DispUser.bio:
- ${DispUser.bio | n}
- % endif
- <br />
- % if DispUser.website:
- <div style="float:right;">
- <a href="http://${DispUser.website}">${DispUser.website}</a>
- </div>
- % endif
- </div>
- </div>
- % else:
- <i>Pas d'information</i>
- % endif
- </p>
- </div>
- <br/>
- <hr/>
- <p style="float:right;">Créé le ${DispUser.created.strftime('%d %b %Y')}</p>
-
- </div>
- </div>
|