|
@@ -1,10 +1,11 @@
|
|
|
from flask import render_template, Blueprint, request, redirect, url_for, jsonify
|
|
|
import requests
|
|
|
+from wtforms.compat import iteritems
|
|
|
from backstage.collections.forms import CollectionCreateForm
|
|
|
from backstage.utils import get_now_time
|
|
|
from backstage.utils.routes import create_content, remove_content, get_trans_title_url_name
|
|
|
from backstage.config import PORTAL_SERVER
|
|
|
-
|
|
|
+import json
|
|
|
|
|
|
collections_app = Blueprint('collections', __name__)
|
|
|
|
|
@@ -13,12 +14,23 @@ collections_app = Blueprint('collections', __name__)
|
|
|
def collection_list():
|
|
|
response = requests.get('{}contents?url=/collection'.format(PORTAL_SERVER))
|
|
|
if response.status_code == 200:
|
|
|
- print(response.json()[1])
|
|
|
- print(url_for('collections.create'))
|
|
|
+ #sortedData = sorted(response.json(), key='date', reverse=True)
|
|
|
+ #print(len(response))
|
|
|
+ #aa = json.loads(response.text)
|
|
|
+ sortedData = sorted(response.json(), key=lambda x:x['date'], reverse=True)
|
|
|
+ """ i=1
|
|
|
+ for d in sortedData:
|
|
|
+ if i == 1:
|
|
|
+ print(d)
|
|
|
+ for key, value in d.items():
|
|
|
+ print(key+' '+value)
|
|
|
+ i+=1 """
|
|
|
+
|
|
|
+ #print(response.text)
|
|
|
return render_template('collections.html',
|
|
|
title='家具規劃作品',
|
|
|
legend='家具規劃作品列表',
|
|
|
- collections=response.json(),
|
|
|
+ collections=sortedData,
|
|
|
length=len(response.json()),
|
|
|
form=CollectionCreateForm())
|
|
|
|