<%inherit file="/base/index.html" /> <%def name="heading()">

Speakers

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:
% for speaker in c.speakers: % endfor
ID Name Dialect
${speaker.id} ${speaker.firstName} ${speaker.lastName} ${speaker.dialect}
% endif

Users

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)">
% for user in users: % endfor
ID Name Affiliation Email
${user.id} ${user.firstName} ${user.lastName} % if 'user_id' in session and user.id == session['user_id']: (me) % endif ${user.affiliation} ${user.email}