##// END OF EJS Templates
env-variables: make it safer if there's a syntax problem inside .ini file....
env-variables: make it safer if there's a syntax problem inside .ini file. It's better to not crash, since it means server wont start. Let users fix problems instead of breaking the startup because of that.

File last commit:

r2985:0dd49fc6 default
r3237:5cf82ecc default
Show More
settings_exceptions_browse.mako
57 lines | 2.0 KiB | application/x-mako | MakoHtmlLexer
/ rhodecode / templates / admin / settings / settings_exceptions_browse.mako
exceptions: added new exception tracking capability....
r2907 <div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">${_('Exceptions Tracker ')}</h3>
</div>
<div class="panel-body">
% if c.exception_list_count == 1:
${_('There is {} stored exception.').format(c.exception_list_count)}
% else:
${_('There are {} stored exceptions.').format(c.exception_list_count)}
% endif
${_('Store directory')}: ${c.exception_store_dir}
${h.secure_form(h.route_path('admin_settings_exception_tracker_delete_all'), request=request)}
<div style="margin: 0 0 20px 0" class="fake-space"></div>
<div class="field">
<button class="btn btn-small btn-danger" type="submit"
onclick="return confirm('${_('Confirm to delete all exceptions')}');">
<i class="icon-remove-sign"></i>
${_('Delete All')}
</button>
</div>
${h.end_form()}
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
exception-tracker: add show-more link.
r2985 <h3 class="panel-title">${_('Exceptions Tracker - Showing the last {} Exceptions').format(c.limit)}.</h3>
<a class="panel-edit" href="${h.current_route_path(request, limit=c.next_limit)}">${_('Show more')}</a>
exceptions: added new exception tracking capability....
r2907 </div>
<div class="panel-body">
<table class="rctable">
<tr>
exceptions-store: show number of exceptions.
r2910 <th>#</th>
exceptions: added new exception tracking capability....
r2907 <th>Exception ID</th>
<th>Date</th>
<th>App Type</th>
<th>Exc Type</th>
</tr>
exceptions-store: show number of exceptions.
r2910 <% cnt = len(c.exception_list)%>
exceptions: added new exception tracking capability....
r2907 % for tb in c.exception_list:
<tr>
exceptions-store: show number of exceptions.
r2910 <td>${cnt}</td>
exceptions: added new exception tracking capability....
r2907 <td><a href="${h.route_path('admin_settings_exception_tracker_show', exception_id=tb['exc_id'])}"><code>${tb['exc_id']}</code></a></td>
<td>${h.format_date(tb['exc_utc_date'])}</td>
<td>${tb['app_type']}</td>
<td>${tb['exc_type']}</td>
</tr>
exceptions-store: show number of exceptions.
r2910 <% cnt -=1 %>
exceptions: added new exception tracking capability....
r2907 % endfor
</table>
</div>
</div>