diff options
Diffstat (limited to 'gn2/wqflask/templates')
| -rw-r--r-- | gn2/wqflask/templates/gnqa_answer.html | 5 | ||||
| -rw-r--r-- | gn2/wqflask/templates/gnqa_search_history.html | 24 |
2 files changed, 26 insertions, 3 deletions
diff --git a/gn2/wqflask/templates/gnqa_answer.html b/gn2/wqflask/templates/gnqa_answer.html index 25b8f107..69bb89f4 100644 --- a/gn2/wqflask/templates/gnqa_answer.html +++ b/gn2/wqflask/templates/gnqa_answer.html @@ -1,10 +1,9 @@ {% block css %} -<style> - + <style> #gnqa-answer-box { white-space: pre-line; } -</style> + </style> {% endblock %} <section class="container-fluid answers gnqa-copy"> <div class="row container gnqa-answer" style="margin-bottom: 1em"> diff --git a/gn2/wqflask/templates/gnqa_search_history.html b/gn2/wqflask/templates/gnqa_search_history.html index 8d54ad80..c12e7c93 100644 --- a/gn2/wqflask/templates/gnqa_search_history.html +++ b/gn2/wqflask/templates/gnqa_search_history.html @@ -47,6 +47,30 @@ {% endfor %} </ul> </div> + <div class="row"> + <nav aria-label="Page navigation example" + class="col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3"> + <ul class="pagination"> + {% for idx in range(1, num_pages) %} + {% if current == idx %} + <li class="page-item active"> + <a class="page-link" + hx-swap="innerHTML" + hx-target="#swap" + hx-get="/gnqna/records?page={{ idx }}">{{ idx }}</a> + </li> + {% else %} + <li class="page-item"> + <a class="page-link" + hx-swap="innerHTML" + hx-target="#swap" + hx-get="/gnqna/records?page={{ idx }}">{{ idx }}</a> + </li> + {% endif %} + {% endfor %} + </ul> + </nav> + </div> </div> </div> </div> |
