view kallithea/templates/admin/admin_log.html @ 6277:4304595d246c

style: in preparation for Bootstrap, refactor to use Bootstrap compatible form class names Based on work by Dominik Ruf. Mostly: sed -i \ -e 's,<table>,<table class="table">,g' \ -e 's,<div class="fields">,<div class="form-horizontal">,g' \ -e 's,<div class="field">,<div class="form-group">,g' \ -e 's,<label for="\([^"]*\)">,<label class="control-label" for="\1">,g' \ `hg mani` cat kallithea/public/css/style.css | \ sed -e '/\.fields\>/{p;s/\.fields/.form-horizontal/g}' | \ sed -e '/\.fields\>/s/ {$/,/g' | \ sed -e '/\.field\>/{p;s/\.field\>/.form-group/g}' | \ sed -e '/\.field\>/s/ {$/,/g' | \ sed -e '/\.fields\>.*\.form-group\>/d' | \ sed -e '/\.form-horizontal\>.*\.field\>/d ' | \ cat - > kallithea/public/css/style.css.tmp mv kallithea/public/css/style.css.tmp kallithea/public/css/style.css
author Mads Kiilerich <madski@unity3d.com>
date Mon, 24 Oct 2016 21:45:09 +0200
parents 155f281be5f8
children 103f07acad83
line wrap: on
line source

## -*- coding: utf-8 -*-
%if c.users_log:
<table class="table">
    <tr>
        <th class="left">${_('Username')}</th>
        <th class="left">${_('Action')}</th>
        <th class="left">${_('Repository')}</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>
        %if l.user is not None:
          ${h.link_to(l.user.username,h.url('edit_user', id=l.user.user_id))}
        %else:
          ${l.username}
        %endif
        </td>
        <td>${h.action_parser(l)[0]()}
            <div class="journal_action_params">
                ${h.literal(h.action_parser(l)[1]())}
            </div>
        </td>
        <td>
            %if l.repository is not None:
              ${h.link_to(l.repository.repo_name,h.url('summary_home',repo_name=l.repository.repo_name))}
            %else:
              ${l.repository_name}
            %endif
        </td>

        <td>${h.fmt_date(l.action_date)}</td>
        <td>${l.user_ip}</td>
    </tr>
    %endfor
</table>

<script type="text/javascript">
  $(document).ready(function(){
    var $user_log = $('#user_log');
    $user_log.on('click','.pager_link',function(e){
      asynchtml(e.target.href, $user_log, function(){
        show_more_event();
        tooltip_activate();
        show_changeset_tooltip();
      });
      e.preventDefault();
    });
    $user_log.on('click','.show_more',function(e){
      var el = e.target;
      $('#'+el.id.substring(1)).show();
      $(el.parentNode).hide();
    });
  });
</script>

<div class="pagination-wh pagination-left">
${c.users_log.pager('$link_previous ~2~ $link_next')}
</div>
%else:
    ${_('No actions yet')}
%endif