diff --git a/templates/list.html b/templates/list.html
index 6b4c2bc..b500a7f 100644
--- a/templates/list.html
+++ b/templates/list.html
@@ -55,7 +55,7 @@
📊 Postęp listy —
{{ purchased_count }}/
{{ total_count }} kupionych
- ({{ percent|round(0) }}%)
+ ({{ percent|int }}%)
@@ -108,13 +108,19 @@
{% endif %}
- {% if item.note %}
-
[ {{ item.note }} ]
- {% endif %}
- {% if item.not_purchased_reason %}
-
[ Powód: {{ item.not_purchased_reason }} ]
- {% endif %}
+
+ {% if item.note %}
+ [ {{ item.note }} ]
+ {% endif %}
+ {% if item.not_purchased_reason %}
+ [ Powód: {{ item.not_purchased_reason }} ]
+ {% endif %}
+ {% if item.added_by and item.owner_id and item.added_by_id and item.added_by_id != item.owner_id %}
+ [ Dodał/a: {{ item.added_by }} ]
+ {% endif %}
+
+
diff --git a/templates/list_share.html b/templates/list_share.html
index 61f4cdf..7bde4af 100644
--- a/templates/list_share.html
+++ b/templates/list_share.html
@@ -43,12 +43,18 @@
{% endif %}
- {% if item.note %}
-
[ {{ item.note }} ]
- {% endif %}
- {% if item.not_purchased_reason %}
-
[ Powód: {{ item.not_purchased_reason }} ]
- {% endif %}
+
+ {% if item.note %}
+ [ {{ item.note }} ]
+ {% endif %}
+ {% if item.not_purchased_reason %}
+ [ Powód: {{ item.not_purchased_reason }} ]
+ {% endif %}
+ {% if item.added_by and item.owner_id and item.added_by_id and item.added_by_id != item.owner_id %}
+ [ Dodał/a: {{ item.added_by }} ]
+ {% endif %}
+
+