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.
 
 
 
 
 

51 lines
1.3 KiB

  1. <%inherit file="jm2l:templates/layout.mako"/>
  2. <%namespace name="helpers" file="jm2l:templates/helpers.mako"/>
  3. <div class="row-fluid">
  4. <div class="span10 offset1">
  5. % if request.user and (DispUser.uid==request.user.uid or request.user.uid==1):
  6. <a style="float:right;" href="/MesJM2L?user=${DispUser.uid}">Editer</a>
  7. % endif
  8. <h2>${DispUser.prenom | n} ${DispUser.nom | n}</h2>
  9. <div class="titleborderbox">
  10. <strong>Son profil</strong>.
  11. % if DispUser.pseudo:
  12. (${DispUser.pseudo})
  13. %endif
  14. </div>
  15. <div class="media borderbox">
  16. ${helpers.show_pictures(DispUser)}
  17. <div class="media-body">
  18. % if DispUser.bio:
  19. ${DispUser.bio | n}
  20. % else:
  21. <i>Ce profil n'a pas été complété.</i>
  22. % endif
  23. </div>
  24. </div>
  25. <div class="footborderbox">
  26. % if DispUser.website:
  27. <div style="float:right;">
  28. <a href="${DispUser.website}">${DispUser.website}</a>
  29. </div>
  30. % endif
  31. </div>
  32. <br />
  33. % if DispUser.tiers:
  34. <hr/>
  35. <h4>Fait la promotion de ...</h4>
  36. ${helpers.show_SummaryEntities(DispUser.tiers)}
  37. % endif
  38. % if DispUser.events:
  39. <hr/>
  40. <h4>Ses interventions :</h4>
  41. ${helpers.show_Interventions(DispUser.events)}
  42. % endif
  43. <p style="float:right;">Créé le ${DispUser.created.strftime('%d %b %Y').decode('utf-8')}</p>
  44. </div>
  45. </div>