Files
@ 83c7ee1b5f5c
Branch filter:
Location: kallithea/pylons_app/templates/errors/error_404.html - annotation
83c7ee1b5f5c
975 B
text/html
improved timerproxy with sqllogging, and new way of sqlformat queries
9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9936a1d359e0 9936a1d359e0 9936a1d359e0 9936a1d359e0 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 9f6300b96380 | ## -*- coding: utf-8 -*-
<%!
from pylons_app.lib import filters
%>
<%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()">
<ul class="page-nav">
<li>${h.link_to(u'Home',h.url('hg_home'))}</li>
<li class="current">${_('Admin')}</li>
</ul>
</%def>
<%def name="js()">
</%def>
<%def name="main()">
<h2 class="no-link no-border">Not Found</h2>
<p class="normal">The specified repository "${c.repo_name}" is unknown, sorry.</p>
<p class="normal">
<a href="/_admin/add_repo/${c.repo_name|n,filters.clean_repo}">Create "${c.repo_name}" repository as ${c.repo_name|n,filters.clean_repo}</a>
</p>
<p class="normal">Go back to the ${h.link_to(_('main repository list page'),h.url('hg_home'))}.</p>
<div class="page-footer">
</div>
</%def>
|