Files
@ b2575bdb847c
Branch filter:
Location: kallithea/rhodecode/templates/admin/repos_groups/repos_groups_add.html - annotation
b2575bdb847c
1.9 KiB
text/html
diffs: drop diffs.differ
This function did not really add any value, it was yet another layer that was
hiding the bug that we use ref[1] without ref[0], and it had this strange
undefined behaviour for diffing across repos.
Inlining the call to .get_diff do not make the code more complex but makes it
more obvious what is going on so it can be cleaned up later.
This function did not really add any value, it was yet another layer that was
hiding the bug that we use ref[1] without ref[0], and it had this strange
undefined behaviour for diffing across repos.
Inlining the call to .get_diff do not make the code more complex but makes it
more obvious what is going on so it can be cleaned up later.
3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 4c78a0855a17 3bce31f026b8 eacd33e0c5b3 3bce31f026b8 f91d3f9b7230 f91d3f9b7230 4c78a0855a17 3bce31f026b8 4c78a0855a17 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 f91d3f9b7230 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 e0b069468de0 3bce31f026b8 3bce31f026b8 43b8e161be3f 3bce31f026b8 3bce31f026b8 f91d3f9b7230 43b8e161be3f 43b8e161be3f e0b069468de0 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f f91d3f9b7230 43b8e161be3f 43b8e161be3f e0b069468de0 43b8e161be3f 43b8e161be3f cbc644d96a53 43b8e161be3f f91d3f9b7230 f91d3f9b7230 3bce31f026b8 7ae36df760ce f91d3f9b7230 3bce31f026b8 3bce31f026b8 3bce31f026b8 f91d3f9b7230 f91d3f9b7230 | ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Add repository group')} · ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(_('Admin'),h.url('admin_home'))}
»
${h.link_to(_('Repository groups'),h.url('repos_groups'))}
»
${_('Add new repository group')}
</%def>
<%def name="page_nav()">
${self.menu('admin')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
${h.form(url('repos_groups'))}
<div class="form">
<!-- fields -->
<div class="fields">
<div class="field">
<div class="label">
<label for="group_name">${_('Group name')}:</label>
</div>
<div class="input">
${h.text('group_name',class_='medium')}
</div>
</div>
<div class="field">
<div class="label label-textarea">
<label for="group_description">${_('Description')}:</label>
</div>
<div class="textarea text-area editor">
${h.textarea('group_description',cols=23,rows=5,class_="medium")}
</div>
</div>
<div class="field">
<div class="label">
<label for="group_parent_id">${_('Group parent')}:</label>
</div>
<div class="input">
${h.select('group_parent_id',request.GET.get('parent_group'),c.repo_groups,class_="medium")}
</div>
</div>
<div class="buttons">
${h.submit('save',_('save'),class_="ui-btn large")}
</div>
</div>
</div>
${h.end_form()}
</div>
</%def>
|