view kallithea/templates/files/files_history_box.html @ 6294:c40e567e4b82

style: use Bootstrap compatible data-toggle="tooltip" markup Based on work by Dominik Ruf and Andrew Shadura.
author Mads Kiilerich <madski@unity3d.com>
date Tue, 08 Nov 2016 23:29:12 +0100
parents f287754980cc
children 03746b8cd5c9
line wrap: on
line source

<div class="file_author" style="clear:both">
    <div class="item">${h.literal(ungettext(u'%s author',u'%s authors',len(c.authors)) % ('<b>%s</b>' % len(c.authors))) }</div>
    %for email, user in c.authors:
      <div class="contributor" style="float:left" data-toggle="tooltip" title="${user}">
        ${h.gravatar_div(email, size=20, div_style="margin:1px")}
      </div>
    %endfor
</div>