Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: appengine_apps/chromium_status/templates/commits.html

Issue 778533003: Moved chromium_status to appengine/ (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 {% extends "base.html" %}
2
3 {% block content %}
4 <center>
5 <h2>Last {{ limit }} {{ app_name }} LKGR commits</h2>
6 <table border="1" cellpadding="5">
7 <tr bgcolor="#CCCCFF">
8 <td><b>Git Hash</b></td>
9 <td><b>Commit Position</b></td>
10 <td><b>When</b></td>
11 </tr>
12 {% for commit in commits %}
13 <tr>
14 <td><a href="https://chromium.googlesource.com/chromium/src/+log/{{ commit .git_hash }}">{{ commit.git_hash }}</a>
15 <td>{{ commit.position_ref }}@{#{{ commit.position_num }}}</td>
16 <td>{{ commit.date|date:"D M d, H:i T " }}</td>
17 </tr>
18 {% endfor %}
19 </table>
20 </center>
21 {% endblock %}
OLDNEW
« no previous file with comments | « appengine_apps/chromium_status/templates/breakpad.html ('k') | appengine_apps/chromium_status/templates/cq_owner.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698