mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-20 16:05:37 +00:00
35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
{% extends base_template %}
|
|
{% load seahub_tags avatar_tags i18n %}
|
|
{% load url from future %}
|
|
|
|
{% block main_panel %}
|
|
<h2 class="file-modification-hd"><span class="op-target">{{ u_filename }}</span> {% trans "modification details" %} <a href="{% url 'user_profile' current_commit.creator_name %}">{% avatar current_commit.creator_name 16 %}</a><span class="modifier">{{ current_commit.creator_name|email2nickname }}</span><span class="time">{{ current_commit.ctime|translate_seahub_time }}</span></h2>
|
|
<p class="path">
|
|
{% trans "Current Path:" %}
|
|
{% for name, link in zipped %}
|
|
{% if not forloop.last %}
|
|
<a href="{% url 'repo' repo.id %}?p={{ link|urlencode }}">{{ name }}</a> /
|
|
{% else %}
|
|
<a href="{% url 'repo_view_file' repo.id %}?p={{ link|urlencode }}">{{ name }}</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</p>
|
|
{% if is_new_file %}
|
|
<div id="text-diff-output">
|
|
<p class="blank-file">{% trans "It's a newly-created blank file." %}</p>
|
|
</div>
|
|
{% else %}
|
|
<div id="text-diff-output">
|
|
<table class="diff-con">
|
|
<tr>
|
|
<th width="3%"></th>
|
|
<th width="47%">{% trans "before modification" %}</th>
|
|
<th width="3%"></th>
|
|
<th width="47%">{% trans "after modification" %}</th>
|
|
</tr>
|
|
{{ diff_result_table|safe }}
|
|
</table>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|