review-list.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {% extends 'user-base.html' %}
  2. {% block content %}
  3. <h2 style="text-align: center;">All reviews posted on {{ platform|title }}</h2>
  4. {% for review in reviews %}
  5. {% if platform == 'google' %}
  6. {% include '_google_review.html' %}
  7. {% elif platform == 'facebook' %}
  8. {% include '_facebook_review.html' %}
  9. {% elif platform == 'yelp' %}
  10. {% include '_yelp_review.html' %}
  11. {% endif %}
  12. {% endfor %}
  13. <div align="center">
  14. {% if reviews.has_other_pages %}
  15. {% if reviews.has_previous %}
  16. <a class="btn btn-outline-info mb-4" href="?page=1">First</a>
  17. <a class="btn btn-outline-info mb-4" href="?page={{ reviews.previous_page_number }}">Previous</a>
  18. {% endif %}
  19. {% for num in reviews.paginator.page_range %}
  20. {% if reviews.number == num %}
  21. <a class="btn btn-info mb-4" href="?page={{ num }}">{{ num }}</a>
  22. {% elif num > reviews.number|add:'-3' and num < reviews.number|add:'3' %}
  23. <a class="btn btn-outline-info mb-4" href="?page={{ num }}">{{ num }}</a>
  24. {% endif %}
  25. {% endfor %}
  26. {% if reviews.has_next %}
  27. <a class="btn btn-outline-info mb-4" href="?page={{ reviews.next_page_number }}">Next</a>
  28. <a class="btn btn-outline-info mb-4" href="?page={{ reviews.paginator.num_pages }}">Last</a>
  29. {% endif %}
  30. {% endif %}
  31. </div>
  32. {% endblock %}