Le repo des sources pour le site web des JM2L
Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- <%inherit file="jm2l:templates/layout.mako"/>
- <%namespace name="helpers" file="jm2l:templates/helpers.mako"/>
-
- % if request.user and (DispUser.uid==request.user.uid or request.user.uid==1):
- <a style="float:right;" href="/MesJM2L?user=${DispUser.uid}">Editer</a>
- % endif
-
- <h2>${DispUser.prenom} ${DispUser.nom}</h2>
-
- <div class="titleborderbox">
- <strong>Son profil</strong>.
- % if DispUser.pseudo:
- (${DispUser.pseudo})
- %endif
- </div>
- <div class="media borderbox">
- ${helpers.show_pictures(DispUser)}
- <div class="media-body">
- % if DispUser.bio:
- ${DispUser.bio | n}
- % else:
- <i>Ce profil n'a pas été complété.</i>
- % endif
- </div>
- </div>
- <div class="footborderbox">
- % if DispUser.website:
- <div style="float:right;">
- <a href="${DispUser.website}">${DispUser.website}</a>
- </div>
- % endif
- </div>
- <br />
- % if DispUser.tiers:
- <hr/>
- <h4>Fait la promotion de ...</h4>
- ${helpers.show_SummaryEntities(DispUser.tiers)}
- % endif
- % if DispUser.events:
- <hr/>
- <h4>Ses interventions :</h4>
- ${helpers.show_Interventions(DispUser.events)}
- % endif
- <p style="float:right;">Créé le ${DispUser.created.strftime('%d %b %Y').decode('utf-8')}</p>
|