## -*- coding: utf-8 -*- <%inherit file="../main.mako" /> <%! import mpulsweb.lib.helper.filters as F %> <%def name="buildNavipath()"> ${parent.buildNavipath()}
  • ${_('Administration')}
  • ${_('User overview')}
  • ${_('Create new user')}
  • ${_('User data of the new created user')}

    ${_('Information about personal')}

    ${_('Please give login name and password to the user.')}

    ${_('Forename')} ${c.uo.first_name| F.NA}
    ${_('Name')} ${c.uo.last_name| F.NA}
    ${_('Phone')} ${c.uo.telephone| F.NA}
    ${_('Roomnumber')} ${c.uo.room| F.NA}
    ${_('Institution')} ${c.uo.branchoffice| F.NA}

    ${_('Information about login')}

    ${_('Login')} ${c.uo.getLogin()| F.NA}
    ${_('Password')} ${c.user_password}
    ${_('Role')} ${c.uo.getRole()| F.NA}
    ${_('Activated')} % if c.uo.isActivated(): ${_('Yes')} % else: ${_('No')} % endif
    ${_('Ask for password at login')} % if c.uo.needsNewPass(): ${_('Yes')} % else: ${_('No')} % endif