diff --git a/tapir/coop/templates/coop/pdf/membership_confirmation_pdf.default.html b/tapir/coop/templates/coop/pdf/membership_confirmation_pdf.default.html index 06b668811..3573b7283 100644 --- a/tapir/coop/templates/coop/pdf/membership_confirmation_pdf.default.html +++ b/tapir/coop/templates/coop/pdf/membership_confirmation_pdf.default.html @@ -1,8 +1,8 @@ + {% load static %} {% load django_bootstrap5 %} {% load i18n %} {% load utils %} -
diff --git a/tapir/coop/templates/coop/tags/user_coop_share_ownership_list_tag.html b/tapir/coop/templates/coop/tags/user_coop_share_ownership_list_tag.html index 7340e7a33..4bf5a2b96 100644 --- a/tapir/coop/templates/coop/tags/user_coop_share_ownership_list_tag.html +++ b/tapir/coop/templates/coop/tags/user_coop_share_ownership_list_tag.html @@ -12,6 +12,10 @@| # | +{% translate "Starts at" %} | +{% translate "Ends at" %} | +{% translate "Status" %} | +
|---|---|---|---|
| {{ ownership.id }} | +{{ ownership.start_date|date:"d.m.Y"|default:"-" }} | ++ {% if ownership.end_date %} + {{ ownership.end_date|date:"d.m.Y" }} + {% else %} + - + {% endif %} + | ++ {% if ownership.is_active %} + {% translate "Active" %} + {% else %} + {% translate "Sold or future" %} + {% endif %} + | +
| {% translate "ID" %} | +{% translate "Date" %} | +{% translate "Description" %} | +{% translate "Amount" %} | +
|---|---|---|---|
| {{ payment.id }} | +{{ payment.payment_date|date:"d.m.Y"|default:"-" }} | +{{ payment.description|default:"-" }} | +{{ payment.amount|floatformat:2 }} € | +
| {% translate "Date & Time" %} | +{% translate "Description" %} | +{% translate "Status" %} | +
|---|---|---|
| + {% if att.slot.shift.start_time %} + {{ att.slot.shift.start_time|date:"d.m.Y H:i" }} + {% else %} + - + {% endif %} + | ++ {% if att.slot.shift %} + {{ att.slot.shift.title|default:att.slot.name|default:"(no description)" }} + {% else %} + {% translate "(Slot removed)" %} + {% endif %} + | +{{ att.get_state_display }} | +
| {% translate 'Date' %} | +{% translate 'Value' %} | +{% translate 'Balance at date' %} | +{% translate 'Description' %} | +
|---|---|---|---|
| {{ entry_data.entry.date|date:"d.m.Y H:i" }} | +{{ entry_data.entry.value }} | +{{ entry_data.balance_at_date }} | +{{ entry_data.entry.description }} | +