diff --git a/app_doc/views.py b/app_doc/views.py index 5b01e32..8a49c76 100644 --- a/app_doc/views.py +++ b/app_doc/views.py @@ -2471,15 +2471,15 @@ def manage_attachment(request): # 限制附件格式 # 获取系统设置允许的附件格式,如果不存在,默认仅允许zip格式文件 try: - attacement_suffix_list = SysSetting.objects.get(types='doc',name='attachment_suffix') - attacement_suffix_list = attacement_suffix_list.value.split(',') - if attacement_suffix_list == ['']: - attacement_suffix_list = ['zip'] + attachment_suffix_list = SysSetting.objects.get(types='doc',name='attachment_suffix') + attachment_suffix_list = attachment_suffix_list.value.split(',') + if attachment_suffix_list == ['']: + attachment_suffix_list = ['zip'] except ObjectDoesNotExist: attachment_suffix_list = ['zip'] allow_attachment = False - for suffix in attacement_suffix_list: - if attachment_name.split('.')[-1] in attacement_suffix_list: + for suffix in attachment_suffix_list: + if attachment_name.split('.')[-1] in attachment_suffix_list: allow_attachment = True if allow_attachment: a = Attachment.objects.create( diff --git a/static/PearAdminLayui/index.html b/static/PearAdminLayui/index.html deleted file mode 100644 index b0a89db..0000000 --- a/static/PearAdminLayui/index.html +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - Pear Admin Layui - - - - - - - - - - - - - -
-
- - - -
- -
- -
- - - -
-
-
-
- -
-
-
-
- -
- -
-
-
- - - - - - - diff --git a/template/app_doc/manage_project.html b/template/app_doc/manage_project.html index b714906..1a3e897 100644 --- a/template/app_doc/manage_project.html +++ b/template/app_doc/manage_project.html @@ -10,31 +10,42 @@ + + + + +{% endblock %} \ No newline at end of file