From a9174dbad8379fa14a8e22db40f38ef01546265f Mon Sep 17 00:00:00 2001 From: lian Date: Fri, 17 May 2024 16:02:03 +0800 Subject: [PATCH] rm repo_history_view.html --- seahub/templates/repo_history_view.html | 128 ------------------------ 1 file changed, 128 deletions(-) delete mode 100644 seahub/templates/repo_history_view.html diff --git a/seahub/templates/repo_history_view.html b/seahub/templates/repo_history_view.html deleted file mode 100644 index e4632d4d0b6..00000000000 --- a/seahub/templates/repo_history_view.html +++ /dev/null @@ -1,128 +0,0 @@ -{% extends "base_wide_page.html" %} - -{% load seahub_tags avatar_tags i18n %} - - -{% block extra_style %} - -{% endblock %} - -{% block wide_page_content %} -

{% blocktrans with repo_name=repo.props.name %}{{repo_name}} Snapshot{% endblocktrans %} ({{ current_commit.props.ctime|tsstr_sec }})

- -{% if referer %} - - - -{% endif %} - - {% if path == '/' %} -
- {{ current_commit.props.desc|translate_commit_desc }} - - - {% if current_commit.props.creator_name %} - - {{ current_commit.props.creator_name|email2nickname }} - {% else %} - {% trans "Unknown"%} - {% endif %} - - {{ current_commit.props.ctime|translate_seahub_time }} - -
- {% endif %} - -
-

- {% trans "Current path: "%} - {% for name, link in zipped %} - {% if not forloop.last %} - {{ name }} / - {% else %} - {{ name }} - {% endif %} - {% endfor %} -

- - {% if path == '/' and is_repo_owner %} - - {% endif %} -
- - - - - - - - - - {% for dirent in dir_list %} - - - - - - - {% endfor %} - - {% for dirent in file_list %} - - - - - - - {% endfor %} -
{% trans "Name"%}{% trans "Size"%}{% trans "Operations"%}
{% trans {{ dirent.obj_name }}{% trans "Restore" %}
{% trans {{ dirent.props.obj_name }}{{ dirent.file_size|filesizeformat }} - {% trans "Restore" %} - {% trans "Download" %} -
- {% endblock %} - -{% block extra_script %} - -{% endblock %}