say Not Yet Rated if we don't have ratings (bug 634758)

This commit is contained in:
Jeff Balogh 2011-03-03 11:03:12 -08:00
Родитель d62333d161
Коммит ce28c06d6e
2 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -22,6 +22,8 @@
{% with num=addon.total_reviews %}
{% if num %}
{{ addon.average_rating|float|stars }}
{% else %}
<i>{{ _('Not Yet Rated') }}</i>
{% endif %}
{% endwith %}
{% endif %}

Просмотреть файл

@ -55,6 +55,11 @@ table {
}
*/
i {
font-style: italic;
color: #838382;
}
/** Clearfix */
.listview li a:after,
header:after,
@ -1375,4 +1380,4 @@ footer a.desktop-link {
margin: 1em 0;
text-align: center;
text-transform: uppercase;
}
}