view pylons_app/templates/admin/admin_log.html @ 362:558eb7c5028f rhodecode-0.0.0.8.0

version bump to 0.8 hg app 0.8 new template. Add yui flot and graph into summary page. + various tweeks and patches into look of application
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 24 Jul 2010 02:17:48 +0200
parents a9a6c74ad2a6
children 8ba65e4c4e4c
line wrap: on
line source

## -*- coding: utf-8 -*-
%if c.users_log:
<table>
	<tr>
		<th class="left">${_('Username')}</th>
		<th class="left">${_('Repository')}</th>
		<th class="left">${_('Action')}</th>
		<th class="left">${_('Date')}</th>
		<th class="left">${_('From IP')}</th>
	</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>
		<td>${l.user_ip}</td>
	</tr>
	%endfor
</table>

<script type="text/javascript">
  var data_div = 'user_log';
  YAHOO.util.Event.onDOMReady(function(){
	YAHOO.util.Event.addListener(YAHOO.util.Dom.getElementsByClassName('pager_link'),"click",function(){
			YAHOO.util.Dom.setStyle('shortlog_data','opacity','0.3');});});
</script>
		
		
<div class="pagination-wh pagination-left">
${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;""")}
</div>
%else: 
	${_('No actions yet')} 
%endif