##// END OF EJS Templates
Added new style error display,...
Added new style error display, fixed changing repo name to existing one some sa session remove added rename repo BIG bug, when renaming to existing name was fixed

File last commit:

r331:a9a6c74a default
r356:b0715a78 default
Show More
admin_log.html
40 lines | 1.2 KiB | text/html | HtmlLexer
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 ## -*- coding: utf-8 -*-
%if c.users_log:
html + css changes, added icons and etc.
r219 <table class="table_disp">
<tr class="header">
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 <td>${_('Username')}</td>
<td>${_('Repository')}</td>
<td>${_('Action')}</td>
<td>${_('Date')}</td>
added ip loggin into mercurial middleware
r331 <td>${_('From IP')}</td>
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 </tr>
%for cnt,l in enumerate(c.users_log):
<tr class="parity${cnt%2}">
<td>${l.user.username}</td>
<td>${l.repository}</td>
<td>${l.action}</td>
<td>${l.action_date}</td>
added ip loggin into mercurial middleware
r331 <td>${l.user_ip}</td>
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 </tr>
%endfor
</table>
<div>
<script type="text/javascript">
html + css changes, added icons and etc.
r219 var data_div = 'user_log';
YAHOO.util.Event.onDOMReady(function(){
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 YAHOO.util.Event.addListener(YAHOO.util.Dom.getElementsByClassName('pager_link'),"click",function(){
YAHOO.util.Dom.setStyle('shortlog_data','opacity','0.3');});});
</script>
<h2>${c.users_log.pager('$link_previous ~2~ $link_next',
onclick="""YAHOO.util.Connect.asyncRequest('GET','$partial_url',{
success:function(o){YAHOO.util.Dom.get(data_div).innerHTML=o.responseText;
YAHOO.util.Event.addListener(YAHOO.util.Dom.getElementsByClassName('pager_link'),"click",function(){
YAHOO.util.Dom.setStyle(data_div,'opacity','0.3');});
YAHOO.util.Dom.setStyle(data_div,'opacity','1');}},null); return false;""")}
</h2>
</div>
%else:
${_('No actions yet')}
%endif