##// END OF EJS Templates
error-document: make sure the error document has registered helpers,...
error-document: make sure the error document has registered helpers, and uses only pyramid mechanics. - in some edge cases the renderer_globals are not called and we cannot rely on them - this should be a purely pyramid view not relying on any of pylons left overs.

File last commit:

r1696:089e4a01 default
r1748:0fcdd9e3 default
Show More
admin_log.mako
15 lines | 415 B | application/x-mako | MakoHtmlLexer
## -*- coding: utf-8 -*-
<%include file="/admin/admin_log_base.mako" />
<script type="text/javascript">
$(function(){
//because this is loaded on every pjax request, it must run only once
//therefore the .one method
$(document).on('pjax:complete',function(){
show_more_event();
});
$(document).pjax('#user_log .pager_link', '#user_log');
});
</script>