mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-16 22:17:59 +00:00
15 lines
456 B
HTML
15 lines
456 B
HTML
{% extends base_template %}
|
|
{% load seahub_tags i18n %}
|
|
|
|
{% block main_panel %}
|
|
<div class="narrow-panel">
|
|
<h3>{% trans "Upload file" %} {% if filename %} {{ filename }} {% endif %} {% trans "to" %}
|
|
{% for name, link in zipped %}
|
|
<a href="{{ SITE_ROOT }}repo/{{ repo.id }}/?p={{ link|urlencode }}">{{ name }}</a> /
|
|
{% endfor %}
|
|
{% trans "error: " %}
|
|
</h3>
|
|
<p>{{ err_msg }}</p>
|
|
</div>
|
|
{% endblock %}
|