forked from tobami/codespeed
-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathchanges_logs.html
More file actions
27 lines (26 loc) · 1.17 KB
/
changes_logs.html
File metadata and controls
27 lines (26 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% if error %}
<tr><td colspan="2">Error while retrieving logs: {{ error }}</td></tr>
{% else %}
{% for log in logs %}
<tr>
<th class="date infofirst">{{ log.date }}</th>
<td>
{% if log.author_email and show_email_address %}
<a class="author fn" href="mailto:{{ log.author_email }}">{{ log.author }}</a>
{% else %}
<span class="author fn">{{ log.author }}</span>
{% endif %}
commited
{% if log.commit_browse_url %}
<a class="commit-id" title="{{ log.commitid }}" href="{{ log.commit_browse_url }}">{{ log.short_commit_id|default:log.commitid }}</a>:
{% else %}
<abbr class="commit-id" title="{{ log.commitid }}">{{ log.short_commit_id|default:log.commitid }}</abbr>:
{% endif %}
<pre class="message">{{ log.message|linebreaksbr|urlize }}</pre>
{% if log.body %}
<pre class="body">{{ log.body|linebreaksbr|urlize }}</pre>
{% endif %}
</td>
</tr>
{% endfor %}
{% endif %}