##// END OF EJS Templates
pull-requests: increase stability of concurrent pull requests creation by flushing prematurly the statuses of commits....
pull-requests: increase stability of concurrent pull requests creation by flushing prematurly the statuses of commits. This is required to increase the versions on each concurrent call. Otherwise we could get into an integrity errors of commitsha+version+repo

File last commit:

r2975:2d612d18 default
r3368:a4f559a8 default
Show More
mapping.pt
31 lines | 940 B | text/plain | TextLexer
dan
forms: add deform for integration settings forms
r518 <tal:def tal:define="title title|field.title;
description description|field.description;
errormsg errormsg|field.errormsg;
item_template item_template|field.widget.item_template"
i18n:domain="deform">
<div class="panel panel-default">
<div class="panel-heading">${title}</div>
<div class="panel-body">
branch permissions: added logic to define in UI branch permissions....
r2975 <div tal:condition="errormsg" class="clearfix alert alert-error">
<span i18n:translate="">
dan
forms: add deform for integration settings forms
r518 There was a problem with this section
branch permissions: added logic to define in UI branch permissions....
r2975 </span>
<div>${errormsg}</div>
dan
forms: add deform for integration settings forms
r518 </div>
<div tal:condition="description">
${description}
</div>
${field.start_mapping()}
<div tal:repeat="child field.children"
tal:replace="structure child.render_template(item_template)" >
</div>
${field.end_mapping()}
<div style="clear: both"></div>
</div>
</div>
</tal:def>