瀏覽代碼

randomly order resources when on regular view

joel
Simon Bowie 2 年之前
父節點
當前提交
55671f78ac
共有 3 個檔案被更改,包括 6 行新增3 行删除
  1. +2
    -1
      web/app/book.py
  2. +2
    -1
      web/app/practice.py
  3. +2
    -1
      web/app/tool.py

+ 2
- 1
web/app/book.py 查看文件

from .relationships import * from .relationships import *
from . import db from . import db
import os import os
from sqlalchemy.sql import func


book = Blueprint('book', __name__) book = Blueprint('book', __name__)


def get_books(): def get_books():
view = request.args.get('view') view = request.args.get('view')
resource_type = 'book' resource_type = 'book'
books_query = Resource.query.filter_by(type=resource_type)
books_query = Resource.query.filter_by(type=resource_type).order_by(func.random())
for key in request.args.keys(): for key in request.args.keys():
if key != 'view': if key != 'view':
if (key == 'practice' and request.args.get(key) != ''): if (key == 'practice' and request.args.get(key) != ''):

+ 2
- 1
web/app/practice.py 查看文件

from . import db from . import db
import os import os
import markdown import markdown
from sqlalchemy.sql import func


practice = Blueprint('practice', __name__) practice = Blueprint('practice', __name__)


@practice.route('/practices') @practice.route('/practices')
def get_practices(): def get_practices():
view = request.args.get('view') view = request.args.get('view')
practices = Resource.query.filter_by(type='practice').all()
practices = Resource.query.filter_by(type='practice').order_by(func.random()).all()
# get number of practices # get number of practices
count = len(practices) count = len(practices)
if view != 'list': if view != 'list':

+ 2
- 1
web/app/tool.py 查看文件

from .relationships import * from .relationships import *
from . import db from . import db
import os import os
from sqlalchemy.sql import func


tool = Blueprint('tool', __name__) tool = Blueprint('tool', __name__)


def get_tools(): def get_tools():
view = request.args.get('view') view = request.args.get('view')
resource_type = 'tool' resource_type = 'tool'
tools_query = Resource.query.filter_by(type=resource_type)
tools_query = Resource.query.filter_by(type=resource_type).order_by(func.random())
for key in request.args.keys(): for key in request.args.keys():
if key != 'view': if key != 'view':
if (key == 'practice' and request.args.get(key) != ''): if (key == 'practice' and request.args.get(key) != ''):

Loading…
取消
儲存