diff --git a/src/pretix/presale/templates/pretixpresale/event/index.html b/src/pretix/presale/templates/pretixpresale/event/index.html
index 4c7f99276c..c1c02b4cfc 100644
--- a/src/pretix/presale/templates/pretixpresale/event/index.html
+++ b/src/pretix/presale/templates/pretixpresale/event/index.html
@@ -66,9 +66,13 @@
{% if item.short_description %}
{{ item.short_description }}
{% endif %}
- {% blocktrans trimmed with minprice=item.min_price|floatformat:2 currency=event.currency %}
- from {{ currency }} {{ minprice }}
- {% endblocktrans %}
+ {% if item.min_price != item.max_price %}
+ {% blocktrans trimmed with minprice=item.min_price|floatformat:2 currency=event.currency %}
+ from {{ currency }} {{ minprice }}
+ {% endblocktrans %}
+ {% else %}
+ {{ event.currency }} {{ item.min_price|floatformat:2 }}
+ {% endif %}