Add ability to make neutral reviews
This commit is contained in:
@@ -54,10 +54,12 @@
|
||||
{% for review in reviews %}
|
||||
<tr>
|
||||
<th colspan="2">
|
||||
{% if review.recommends %}
|
||||
{% if review.rating > 3 %}
|
||||
<i class="fas fa-thumbs-up text-success mr-2"></i>
|
||||
{% else %}
|
||||
{% elif review.rating < 3 %}
|
||||
<i class="fas fa-thumbs-down text-danger mr-2"></i>
|
||||
{% else %}
|
||||
<i class="fas fa-minus mr-2"></i>
|
||||
{% endif %}
|
||||
<a href="{{ review.thread.getViewURL() }}">
|
||||
{{ review.thread.title }}
|
||||
@@ -86,4 +88,4 @@
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user