## -*- coding: utf-8 -*- <%inherit file="base/base.html"/> <%def name="title()"> ${_('Repository managment')} <%def name="breadcrumbs()"> ${h.link_to(u'Home',h.url('/'))} / ${h.link_to(u'Admin',h.url('admin_home'))} <%def name="page_nav()">
  • ${h.link_to(u'Home',h.url('/'))}
  • ${_('Admin')}
  • <%def name="main()"> %if c.admin_user:

    Hi !

    %else:

    ${_('Login')}

    ${h.form(h.url.current())}
    ${_('Username')} ${h.text('username')}
    ${_('Password')} ${h.text('password')}
    ${h.submit('login','login')}
    ${h.end_form()}
    %endif