Merge pull request #460 from mouse-reeve/review-rate

Review rate
This commit is contained in:
Mouse Reeve
2021-03-08 11:50:42 -08:00
committed by GitHub
12 changed files with 144 additions and 16 deletions

View File

@ -1,7 +1,7 @@
{% load bookwyrm_tags %}
{% load i18n %}
<div class="block">
{% if status.status_type == 'Review' %}
{% if status.status_type == 'Review' or status.status_type == 'Rating' %}
<div>
{% if status.name %}
<h3 class="title is-5 has-subtitle" dir="auto">

View File

@ -7,7 +7,7 @@
{% if status.status_type == 'GeneratedNote' %}
{{ status.content | safe }}
{% elif status.status_type == 'Review' and not status.name and not status.content%}
{% elif status.status_type == 'Rating' %}
{% trans "rated" %}
{% elif status.status_type == 'Review' %}
{% trans "reviewed" %}