From 5582af5ee7ef6da4f3ad54310bd93d7cb688f70a Mon Sep 17 00:00:00 2001 From: ydb5755 Date: Fri, 20 Sep 2024 12:01:48 +0300 Subject: [PATCH] start campaign page --- app/campaigns/templates/campaign_page.html | 32 +++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/app/campaigns/templates/campaign_page.html b/app/campaigns/templates/campaign_page.html index d5aba23..9799862 100644 --- a/app/campaigns/templates/campaign_page.html +++ b/app/campaigns/templates/campaign_page.html @@ -1,5 +1,35 @@ {% extends 'base.html' %} {% block title %}{{campaign.title}}{% endblock title %} {% block content %} -{{campaign.title}} +
+
+
+
+
+

{{campaign.title}}

+ + + + + + + + + + + {% for campaign_donation in campaign.get_donations() %} + + + + + + {% endfor %} + +
#AmountUser
{{campaign_donation.id}}{{campaign_donation.amount}}{{campaign_donation.get_user()}}
+ +
+
+
+
+
{% endblock content %} \ No newline at end of file