##// END OF EJS Templates
wsgi-stack: Move the vcs middleware out of the error handling....
wsgi-stack: Move the vcs middleware out of the error handling. Currently we are bypassing the error handling in case of responses from the vcs middleware with a custom response header. By moving it out of the error handling we don't need the custom header anymore.

File last commit:

r1:854a839a default
r948:8c23f9c3 default
Show More
settings_issuetracker.html
34 lines | 1.1 KiB | text/html | HtmlLexer
<%namespace name="its" file="/base/issue_tracker_settings.html"/>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">${_('Issue Tracker / Wiki Patterns')}</h3>
</div>
<div class="panel-body">
${h.secure_form(url('admin_settings_issuetracker_save'), method='post')}
${its.issue_tracker_settings_table(
patterns=c.issuetracker_entries.items(),
form_url=url('admin_settings_issuetracker'),
delete_url=url('admin_issuetracker_delete')
)}
<div class="buttons">
<button type="submit" class="btn btn-primary" id="save">${_('Save')}</button>
<button type="reset" class="btn">${_('Reset')}</button>
</div>
${h.end_form()}
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">${_('Test Patterns')}</h3>
</div>
<div class="panel-body">
${its.issue_tracker_new_row()}
${its.issue_tracker_settings_test(test_url=url('admin_issuetracker_test'))}
</div>
</div>