mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-24 21:07:17 +00:00
41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
{% extends "sysadmin/base.html" %}
|
|
{% load i18n %}
|
|
{% block cur_repo %}tab-cur{% endblock %}
|
|
|
|
{% block left_panel %}{{block.super}}
|
|
<form action="{% url 'sys_repo_search' %}" method="get" class="side-search-form">
|
|
<input type="text" name="name" class="input" value="" placeholder="{% trans "Search libraries by name..." %}" />
|
|
</form>
|
|
{% endblock %}
|
|
|
|
{% block right_panel %}
|
|
<div class="tabnav">
|
|
<ul class="tabnav-tabs">
|
|
<li class="tabnav-tab"><a href="{% url 'sys_repo_admin' %}">{% trans "All" %}</a></li>
|
|
<li class="tabnav-tab"><a href="{% url 'sys_list_orphan' %}">{% trans "Orphan" %}</a></li>
|
|
<li class="tabnav-tab tabnav-tab-cur"><a href="{% url 'sys_list_system' %}">{% trans "System" %}</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
{% if repos %}
|
|
<table>
|
|
<tr>
|
|
<th width="25%">{% trans "Name" %}</th>
|
|
<th width="35%">ID</th>
|
|
<th width="40%">{% trans "Description" %}</th>
|
|
</tr>
|
|
{% for repo in repos %}
|
|
<tr>
|
|
<td><a href="{% url 'repo' repo.id %}">{{ repo.props.name }}</a></td>
|
|
<td style="font-size:11px;">{{ repo.id }}</td>
|
|
<td>{{ repo.props.desc }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% else %}
|
|
<p>{% trans "None" %}</p>
|
|
{% endif %}
|
|
|
|
{% include "sysadmin/repo_transfer_form.html" %}
|
|
{% endblock %}
|