Files
@ 6d44d3862ec4
Branch filter:
Location: kallithea/pylons_app/templates/errors/error_404.html - annotation
6d44d3862ec4
853 B
text/html
fixes #36, removed username, name, lastname, minimal length restrictions,
fixed branches/tags icons in changelog and made them active links
fixed branches/tags icons in changelog and made them active links
9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 410101210923 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 70f645fa97cc 70f645fa97cc 9f6300b96380 70f645fa97cc 70f645fa97cc 9f6300b96380 9f6300b96380 70f645fa97cc 9f6300b96380 9f6300b96380 9f6300b96380 | ## -*- coding: utf-8 -*-
<%inherit file="./../base/base.html"/>
<%def name="title()">
${_('Repository not found')}
</%def>
<%def name="breadcrumbs()">
${h.link_to(u'Home',h.url('hg_home'))}
/
${h.link_to(u'Admin',h.url('admin_home'))}
</%def>
<%def name="page_nav()">
${self.menu('admin')}
</%def>
<%def name="js()">
</%def>
<%def name="main()">
<h2 class="no-link no-border">${_('Not Found')}</h2>
<p class="normal">${_('The specified repository "%s" is unknown, sorry.') % c.repo_name}</p>
<p class="normal">
<a href="${h.url('new_repo',repo=c.repo_name_cleaned)}">
${_('Create "%s" repository as %s' % (c.repo_name,c.repo_name_cleaned))}</a>
</p>
<p class="normal">${h.link_to(_('Go back to the main repository list page'),h.url('hg_home'))}</p>
<div class="page-footer">
</div>
</%def>
|