mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-30 08:53:49 +00:00
15 lines
383 B
HTML
15 lines
383 B
HTML
{% extends base_template %}
|
|
{% load seahub_tags %}
|
|
|
|
{% block main_panel %}
|
|
<div class="narrow-panel">
|
|
<h3>上传文件 {{ filename }} 到
|
|
{% for name, link in zipped %}
|
|
<a href="{{ SITE_ROOT }}repo/{{ repo.id }}/?p={{ link|urlencode }}">{{ name }}</a> /
|
|
{% endfor %}
|
|
失败:
|
|
</h3>
|
|
<p>{{ err_msg }}</p>
|
|
</div>
|
|
{% endblock %}
|