Files
@ 72c8917108ee
Branch filter:
Location: kallithea/rhodecode/templates/admin/repos/repo_add.html - annotation
72c8917108ee
714 B
text/html
journal: don't show "error" popup when navigating away from page while lazy info is loading
The "error" box would pop up in the Journal view when quickly pointing and
clicking a link while the info was loading.
This fix might prevent showing valid error messages in some browsers.
The "error" box would pop up in the Journal view when quickly pointing and
clicking a link while the info was loading.
This fix might prevent showing valid error messages in some browsers.
1e757ac98988 1e757ac98988 1e757ac98988 1e757ac98988 a1ec653f5f95 1e757ac98988 1e757ac98988 1e757ac98988 069884383cc7 f91d3f9b7230 f91d3f9b7230 f91d3f9b7230 069884383cc7 069884383cc7 069884383cc7 cfc0fef66ddd 069884383cc7 1e757ac98988 1e757ac98988 1e757ac98988 1e757ac98988 1e757ac98988 b4f401524060 1e757ac98988 4b62d2fea08a 1e757ac98988 b4f401524060 b4f401524060 b4f401524060 b4f401524060 b4f401524060 4b62d2fea08a f91d3f9b7230 f91d3f9b7230 | ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Add repository')} - ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs_links()">
%if c.rhodecode_user.is_admin:
${h.link_to(_('Admin'),h.url('admin_home'))}
»
${h.link_to(_('Repositories'),h.url('repos'))}
%else:
${_('Admin')}
»
${_('Repositories')}
%endif
»
${_('add new')}
</%def>
<%def name="page_nav()">
${self.menu('admin')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<%include file="repo_add_base.html"/>
</div>
</%def>
|