codereview/templates/browser/blob.html
2010-11-22 15:12:09 -05:00

19 lines
440 B
HTML

{% extends "layouts/default.html" %}
{% load vcs %}
{% block navigation %}
{% include "browser/navigation.html" %}
{% endblock %}
{% block content %}
<h2>Blob View</h2>
<table class="diff">
{% for line in blob.data|lines %}
<tr>
<td class="number">{{ forloop.counter }}</td>
<td class="text">{{ line }}</td>
</tr>
{% endfor %}
</table>
{% include "browser/commitlog.html" %}
{% endblock %}