diff rhodecode/templates/errors/error_404.html @ 547:1e757ac98988

renamed project to rhodecode
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 06 Oct 2010 03:18:16 +0200
parents pylons_app/templates/errors/error_404.html@237470e64bb8
children ffd07396d315
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rhodecode/templates/errors/error_404.html	Wed Oct 06 03:18:16 2010 +0200
@@ -0,0 +1,32 @@
+## -*- 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>
\ No newline at end of file