~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/revlog.pt

  • Committer: j.c.sackett
  • Date: 2011-11-08 16:29:37 UTC
  • mto: This revision was merged to the branch mainline in revision 459.
  • Revision ID: jonathan.sackett@canonical.com-20111108162937-nq0pyhk2hracu62f
Updated NEWS with the change.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<div class="revisioninfo">
 
2
  <ul class="expandrev">
 
3
    <li class="mfrom" tal:repeat="parent python:entry.parents[1:]">
 
4
      <span class="revnolink">
 
5
        <a tal:attributes="href python:url(['/changes', parent.revno])"
 
6
           tal:content="python:revno_with_nick(parent)"></a>
 
7
      </span>
 
8
    </li>
 
9
    <li class="mto" tal:repeat="merge_point entry/merge_points">
 
10
      <a tal:attributes="href python:url(['/changes', merge_point.revno])"
 
11
         tal:content="python:revno_with_nick(merge_point)"
 
12
         title="Show history" class="link"></a>
 
13
    </li>
 
14
    <li class="committerli" tal:content="python:', '.join(util.hide_emails(entry.authors))"></li>
 
15
    <tal:block content="structure python:file_change_summary(url, entry, file_changes)" />
 
16
  </ul>
 
17
</div>