fixes
authorRadek Czajka <rczajka@rczajka.pl>
Fri, 4 Nov 2022 09:25:40 +0000 (10:25 +0100)
committerRadek Czajka <rczajka@rczajka.pl>
Fri, 4 Nov 2022 09:25:40 +0000 (10:25 +0100)
src/funding/models.py
src/funding/templates/funding/2022/includes/funding.html
src/funding/templates/funding/2022/offer_detail.html
src/social/templates/social/carousel_2022.html

index 7d0e742..089b875 100644 (file)
@@ -1,3 +1,4 @@
+
 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
 #
@@ -204,7 +205,7 @@ class Offer(models.Model):
             'is_current': self.is_current(),
             'is_win': offer_sum >= self.target,
             'missing': self.target - offer_sum,
-            'percentage': 100 * offer_sum / self.target,
+            'percentage': min(100, 100 * offer_sum / self.target),
 
             'show_title': True,
             'show_title_calling': True,
index f80a075..b2dc558 100644 (file)
@@ -11,7 +11,7 @@
         <div class="funding-bar-container">
     {% endif %}
     <div class="l-checkout__support__bar">
-      <span class="{% if percentage < 12 %}little-progress{% endif %}" data-label="{% if sum %}{% trans "collected" %}: {{ sum }} zł{% endif %}" style="width: {{ percentage|stringformat:'.2f' }}%;"></span>
+      <span class="{% if percentage < 15 %}little-progress{% endif %}" data-label="{% if sum %}{% trans "collected" %}: {{ sum }} zł{% endif %}" style="width: {{ percentage|stringformat:'.2f' }}%;"></span>
     </div>
     <div class="l-checkout__support__footer">
       {% if show_title %}
index bb5bb9e..0812e83 100644 (file)
@@ -12,7 +12,7 @@
 
 
 {% block breadcrumbs %}
-  <a href=""><span>Zbiórki</span></a>
+  <a href="{% url 'funding' %}"><span>Zbiórki</span></a>
   <span>{{ object }}</span>
 {% endblock %}
 
index edaa3bb..a7af46c 100644 (file)
@@ -1,7 +1,7 @@
 {% if banner %}
 <a href="{{ banner.link }}">
   {% if banner.picture %}
-  <img src="{{ banner.image.url }}">
+  <img src="{{ banner.picture.url }}">
   {% endif %}
 </a>
 {% endif %}