%inherit file="/base/index.html" /> <%def name="heading()">
View information about current speakers. Alterations to the list of speakers will immediately affect the searching and adding of Forms, Files and Collections.
% if 'user_role' in session: Add % endif % if c.speakers:ID | Name | Dialect |
${speaker.id} | ${speaker.firstName} ${speaker.lastName} | ${speaker.dialect} |
View information about current users. Click on the user's name to see their personal page. Click on your own name to view and edit your personal page.
% if 'user_role' in session and session['user_role'] == 'administrator': Add % endif ${self.displayUsers(c.users)} <%def name="displayUsers(users)">ID | Name | Affiliation | |
${user.id} | ${user.firstName} ${user.lastName} % if 'user_id' in session and user.id == session['user_id']: (me) % endif | ${user.affiliation} | ${user.email} |