{% extends 'group/group_base.html' %} {% load seahub_tags i18n %} {% block cur_library %}tab-cur{% endblock%} {% block right_panel %}
{% if user.permissions.can_add_repo %} {% endif %}
{% if repos %} {% for repo in repos %} {% endfor %}
{% trans "Name" %} {% trans "Description" %} {% trans "Last Update" %} {% trans "Shared By" %} {% trans "Operations" %}
{% if repo.encrypted %} {% else%} {% if repo.user_perm == 'rw' %} {% else %} {% endif %} {% endif %} {{ repo.props.name }} {{ repo.props.desc }} {% if repo.latest_modify %} {{ repo.latest_modify|translate_seahub_time }} {% else %} -- {% endif %} {{ repo.owner|email2nickname }} {% if is_staff or repo.share_from_me %} {% endif %}
{% else %}

{% trans "No library is sharing to this group" %}

{% blocktrans %}You can share libraries by clicking the "New Library" button above or the "Share" icon on your libraries list.{% endblocktrans %}

{% trans "Libraries shared as writable can be downloaded and synced by other group members. Read only libraries can only be downloaded, updates by others will not be uploaded." %}

{% endif %}
{% if recent_commits|length > 0 %} {% for cmt in recent_commits %} {% endfor %}
{% trans "Library" %} {% trans "Description" %} {% trans "Modified at" %} {% trans "Modifier" %}
{% if cmt.tp == 'Added' or cmt.tp == 'Deleted' or cmt.tp == 'Removed' %} {% if cmt.tp == 'Added' %} {% else %} {% endif %} {% else %} {% endif %} {{ cmt.repo.props.name }} {{cmt.props.desc|translate_commit_desc}} {% if cmt.repo.encrypted %} {% trans 'Details' %} {% else %} {% trans 'Details' %} {% endif %} {{cmt.props.ctime|translate_seahub_time}} {% if cmt.creator_name %} {% if cmt.second_parent_id %} {% trans "None" %} {% else %} {{cmt.creator_name|email2nickname}} {% endif %} {% else %} {% trans "Unknown"%} {% endif %}
{% endif %}
{% if user.permissions.can_add_repo %} {% include "snippets/repo_create_form.html" %} {% endif %}

{% trans 'Library' %} {% trans 'is encrypted' %}


{% trans "The password will be kept in the server for only 1 hour." %}

{% endblock %} {% block extra_script %}{{block.super}} {% endblock %}