|
@@ -2,6 +2,7 @@ from flask import flash, request, redirect, url_for
|
|
import requests
|
|
import requests
|
|
from time import sleep
|
|
from time import sleep
|
|
from backstage.utils import translate
|
|
from backstage.utils import translate
|
|
|
|
+from collections import defaultdict
|
|
|
|
|
|
TYPE_URL_FOR = {'collection': 'collections.collection_list',
|
|
TYPE_URL_FOR = {'collection': 'collections.collection_list',
|
|
'blog': 'blogs.blog_list'}
|
|
'blog': 'blogs.blog_list'}
|
|
@@ -32,3 +33,21 @@ def remove_content():
|
|
|
|
|
|
def get_trans_title_url_name(title):
|
|
def get_trans_title_url_name(title):
|
|
return translate(title).replace(' ', '_')
|
|
return translate(title).replace(' ', '_')
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+def update_manage_table(forms, req_args):
|
|
|
|
+ update_data = defaultdict(list)
|
|
|
|
+ for key, value in forms.items():
|
|
|
|
+ element_type = key.split('-')[0]
|
|
|
|
+ if element_type == 'img':
|
|
|
|
+ value = eval(value)
|
|
|
|
+ else:
|
|
|
|
+ value = str(value)
|
|
|
|
+ update_data[element_type].append(value)
|
|
|
|
+ response = requests.post(
|
|
|
|
+ 'http://127.0.0.1:5000/api/manages/data?page={}§ion={}'.format(
|
|
|
|
+ req_args.get('page'), req_args.get('section_class')), json=update_data)
|
|
|
|
+ if response.status_code == 200:
|
|
|
|
+ flash('修改成功', 'success')
|
|
|
|
+ else:
|
|
|
|
+ flash('修改失敗', 'danger')
|