Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Commit

Permalink
fix(ui): set static style for flask-paginate (#390)
Browse files Browse the repository at this point in the history
  • Loading branch information
MindTooth authored Feb 27, 2022
1 parent 9bc1d76 commit 82d4b5f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ui/projects/projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def projects_index() -> str:
assert projects is not None

pagination = Pagination(
css_framework="bootstrap2",
page=page,
per_page=per_page,
prev_label="Previous",
Expand Down Expand Up @@ -116,6 +117,7 @@ def projects_project(project_id: int) -> Union[str, Tuple[str, int]]:
return abort(404, f"Project {project_id} was not found.")

pagination = Pagination(
css_framework="bootstrap2",
page=page,
per_page=per_page,
prev_label="Previous",
Expand Down

0 comments on commit 82d4b5f

Please sign in to comment.