##// END OF EJS Templates
added repository name into issue tracker link to support different projects issues tracker mapping
added repository name into issue tracker link to support different projects issues tracker mapping

File last commit:

r1594:9dae92a6 beta
r1868:f26acc1b beta
Show More
repo_settings.html
82 lines | 2.6 KiB | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
#38 updated RhodeCode titles
r619 ${c.repo_name} ${_('Settings')} - ${c.rhodecode_name}
renamed project to rhodecode
r547 </%def>
<%def name="breadcrumbs_links()">
fixed breadcrumbs in few pages
r1084 ${h.link_to(u'Home',h.url('/'))}
&raquo;
renamed project to rhodecode
r547 ${h.link_to(c.repo_info.repo_name,h.url('summary_home',repo_name=c.repo_info.repo_name))}
&raquo;
${_('Settings')}
</%def>
more templates updates
r579
renamed project to rhodecode
r547 <%def name="page_nav()">
${self.menu('settings')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
${h.form(url('repo_settings_update', repo_name=c.repo_info.repo_name),method='put')}
<div class="form">
<!-- fields -->
<div class="fields">
<div class="field">
<div class="label">
<label for="repo_name">${_('Name')}:</label>
</div>
<div class="input input-medium">
extended size of some input fields...
r562 ${h.text('repo_name',class_="small")}
renamed project to rhodecode
r547 </div>
</div>
fixes #288...
r1594 <div class="field">
<div class="label">
<label for="repo_group">${_('Repository group')}:</label>
</div>
<div class="input">
${h.select('repo_group','',c.repo_groups,class_="medium")}
</div>
</div>
renamed project to rhodecode
r547 <div class="field">
<div class="label label-textarea">
<label for="description">${_('Description')}:</label>
</div>
<div class="textarea text-area editor">
${h.textarea('description',cols=23,rows=5)}
</div>
</div>
<div class="field">
<div class="label label-checkbox">
<label for="private">${_('Private')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('private',value="True")}
</div>
</div>
<div class="field">
<div class="label">
<label for="">${_('Permissions')}:</label>
</div>
<div class="input">
#56 added ajax removal of users groups,...
r1015 <%include file="../admin/repos/repo_edit_perms.html"/>
</div>
renamed project to rhodecode
r547
<div class="buttons">
fixes autocomplete on groups in non admin repository settings page
r1455 ${h.submit('save','Save',class_="ui-button")}
css optimizations
r888 ${h.reset('reset','Reset',class_="ui-button")}
renamed project to rhodecode
r547 </div>
</div>
</div>
${h.end_form()}
</div>
more templates updates
r579 </div>
renamed project to rhodecode
r547 </%def>