mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-16 14:08:12 +00:00
19 lines
560 B
HTML
19 lines
560 B
HTML
{% extends base_template %}
|
|
{% load seahub_tags i18n %}
|
|
|
|
{% block main_panel %}
|
|
<div class="narrow-panel">
|
|
<h3>{% trans "Update file " %}
|
|
{% for name, link in zipped %}
|
|
{% if not forloop.last %}
|
|
<a href="{{ SITE_ROOT }}repo/{{ repo.id }}/?p={{ link|urlencode }}">{{ name }}</a> /
|
|
{% else %}
|
|
<a href="{{ SITE_ROOT }}repo/{{ repo.id }}/?p={{ link|urlencode }}">{{ name }}</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% trans "error: " %}
|
|
</h3>
|
|
<p>{{ err_msg }}</p>
|
|
</div>
|
|
{% endblock %}
|