mirror of
https://github.com/correl/codereview.git
synced 2025-04-10 17:00:04 -09:00
15 lines
452 B
HTML
15 lines
452 B
HTML
{% extends "layouts/default.html" %}
|
|
|
|
{% block navigation %}
|
|
{% include "browser/navigation.html" %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<form action="{% url codereview.browser.views.diff repository=repository %}">
|
|
<label>Diff tree from revision:</label>
|
|
<input type="text" name="a" />
|
|
<input type="hidden" name="b" value="{{ ref }}" />
|
|
<input type="submit" value="Diff" />
|
|
</form>
|
|
{% include "browser/commitlog.html" %}
|
|
{% endblock %}
|