소스 검색

fixed ordering with pagination

joel
Simon Bowie 1 년 전
부모
커밋
6cef500303
3개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. +2
    -2
      web/app/book.py
  2. +2
    -2
      web/app/practice.py
  3. +2
    -2
      web/app/tool.py

+ 2
- 2
web/app/book.py 파일 보기

@@ -33,7 +33,7 @@ def get_books():
intro_text = markdown.markdown(intro_text)

# DATABASE QUERY
books_query = Resource.query.filter_by(type=resource_type).order_by(Resource.name)
books_query = Resource.query.filter_by(type=resource_type)

# FILTERING
for key in request.args.keys():
@@ -47,7 +47,7 @@ def get_books():
books_query = books_query.filter_by(**kwargs)

# finalise the query and add pagination
books = books_query.paginate(page=page, per_page=5)
books = books_query.order_by(Resource.name).paginate(page=page, per_page=5)

# FILTERS MENU
# get values for filter menu dropdowns

+ 2
- 2
web/app/practice.py 파일 보기

@@ -34,7 +34,7 @@ def get_practices():
intro_text = markdown.markdown(intro_text)

# DATABASE QUERY
practices_query = Resource.query.filter_by(type=resource_type).order_by(Resource.name)
practices_query = Resource.query.filter_by(type=resource_type)

# temporarily removing incomplete practices from main list
practices_query = Resource.query.filter(
@@ -49,7 +49,7 @@ def get_practices():
))

# finalise the query and add pagination
practices = practices_query.paginate(page=page, per_page=5)
practices = practices_query.order_by(Resource.name).paginate(page=page, per_page=5)

# POST-FILTERING PROCESSING
# if view is 'expanded' then append relationships

+ 2
- 2
web/app/tool.py 파일 보기

@@ -33,7 +33,7 @@ def get_tools():
intro_text = markdown.markdown(intro_text)

# DATABASE QUERY
tools_query = Resource.query.filter_by(type=resource_type).order_by(Resource.name)
tools_query = Resource.query.filter_by(type=resource_type)

# FILTERING
for key in request.args.keys():
@@ -50,7 +50,7 @@ def get_tools():
tools_query = tools_query.filter_by(**kwargs)

# finalise the query and add pagination
tools = tools_query.paginate(page=page, per_page=5)
tools = tools_query.order_by(Resource.name).paginate(page=page, per_page=5)

# FILTERS MENU
# get values for filter menu dropdowns

Loading…
취소
저장