diff --git a/organizations/templates/organizations/org_pubinfo.html b/organizations/templates/organizations/org_pubinfo.html new file mode 100644 index 0000000000..944c83da65 --- /dev/null +++ b/organizations/templates/organizations/org_pubinfo.html @@ -0,0 +1,54 @@ +{% extends "org_base.html" %} +{% load seahub_tags avatar_tags group_avatar_tags %} +{% load url from future %} + +{% block nav_pubinfo_class %}class="cur"{% endblock %} + +{% block left_panel %} +
暂无
+{% endif %} +{% endblock %} + +{% block right_panel %} +{% if groups %} +创建者:{{ group.props.creator_name }}
+创建时间:{{ group.props.timestamp|tsstr_sec }}
+现在还没有人创建群组,可以通过“群组”标签下的“创建群组”按钮创建。
+{% endif %} + +{% include "snippets/user_profile_html.html" %} +{% endblock %} + +{% block extra_script %} +{% include "snippets/user_profile_js.html" %} + +{% endblock %} diff --git a/templates/pubinfo.html b/templates/pubinfo.html new file mode 100644 index 0000000000..ad9ea0fbda --- /dev/null +++ b/templates/pubinfo.html @@ -0,0 +1,54 @@ +{% extends "myhome_base.html" %} +{% load seahub_tags avatar_tags group_avatar_tags %} +{% load url from future %} + +{% block nav_pubinfo_class %}class="cur"{% endblock %} + +{% block left_panel %} +暂无
+{% endif %} +{% endblock %} + +{% block right_panel %} +{% if groups %} +创建者:{{ group.props.creator_name }}
+创建时间:{{ group.props.timestamp|tsstr_sec }}
+现在还没有人创建群组,可以通过“群组”标签下的“创建群组”按钮创建。
+{% endif %} + +{% include "snippets/user_profile_html.html" %} +{% endblock %} + +{% block extra_script %} +{% include "snippets/user_profile_js.html" %} + +{% endblock %}