--- a
+++ b/Allura/allura/templates/widgets/repo/log.html
@@ -0,0 +1,52 @@
+{% from 'jinja_master/lib.html' import email_gravatar with context %}
+<div>
+ {% if show_paging %}
+ <div style="clear:both">
+ {{fields['page_list'].display(limit=limit, page=page, count=count)}}
+ </div>
+ {% endif %}
+ <table>
+ <thead>
+ <tr>
+ <th style="text-align:left">Commit</th>
+ <th style="text-align:left">Date</th>
+ <th> </th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for commit in value %}
+ <tr>
+ <td>
+ {{commit.summary}}
+ <br/>
+ {% if commit.committed.email != commit.authored.email %}
+ {% if commit.committer_url %}
+ <a href="{{commit.committer_url}}">{{email_gravatar(commit.committed.email, title=commit.committed.name, size=16)}}
+ {{commit.committed.name}}</a>
+ pushed
+ {% else %}
+ {{email_gravatar(commit.committed.email, title=commit.committed.name, size=16)}} {{commit.committed.name}}
+ pushed
+ {% endif %}
+ {% endif %}
+ <a href="{{commit.url()}}">{{commit.shorthand_id()}}</a>
+ by
+ {{email_gravatar(commit.authored.email, title=commit.authored.name, size=16)}} {{commit.authored.name}}
+ </td>
+ <td>
+ {% if commit.committed.date %}{{h.ago(commit.committed.date)}}{% endif %}
+ </td>
+ <td style="text-align: right">
+ <a href="{{commit.url()}}tree/">Tree</a>
+ </td>
+ </tr>
+ {% endfor %}
+ </tbody>
+ </table>
+ {% if show_paging %}
+ <div style="clear:both">
+ {{fields['page_list'].display(limit=limit, page=page, count=count)}}
+ {{fields['page_size'].display(limit=limit)}}
+ </div>
+ {% endif %}
+</div>