2012-08-16 11:58:26 +00:00
|
|
|
{% extends base_template %}
|
2012-11-05 08:55:39 +00:00
|
|
|
{% load seahub_tags i18n %}
|
2012-08-16 11:58:26 +00:00
|
|
|
|
|
|
|
{% block main_panel %}
|
|
|
|
<div class="narrow-panel">
|
2012-11-05 08:55:39 +00:00
|
|
|
<h3>{% trans "Upload file" %} {% if filename %} {{ filename }} {% endif %} {% trans "to" %}
|
2012-08-16 11:58:26 +00:00
|
|
|
{% for name, link in zipped %}
|
|
|
|
<a href="{{ SITE_ROOT }}repo/{{ repo.id }}/?p={{ link|urlencode }}">{{ name }}</a> /
|
|
|
|
{% endfor %}
|
2012-11-05 08:55:39 +00:00
|
|
|
{% trans "error: " %}
|
2012-08-16 11:58:26 +00:00
|
|
|
</h3>
|
|
|
|
<p>{{ err_msg }}</p>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|