codereview/templates/browser/blob.html

20 lines
440 B
HTML
Raw Normal View History

2010-11-22 20:12:09 +00:00
{% 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 %}