From 798e1c9338074ed2c6d106e21fbc3aed711b337d Mon Sep 17 00:00:00 2001 From: Marcel Marques Date: Fri, 4 Sep 2020 16:37:48 -0300 Subject: [PATCH] Donors page and link in base page --- core/templates/base.html | 5 +-- core/templates/donors.html | 69 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 72 insertions(+), 2 deletions(-) create mode 100644 core/templates/donors.html diff --git a/core/templates/base.html b/core/templates/base.html index f00b4c1c..472d3697 100644 --- a/core/templates/base.html +++ b/core/templates/base.html @@ -116,8 +116,9 @@
Links
diff --git a/core/templates/donors.html b/core/templates/donors.html new file mode 100644 index 00000000..06816f5d --- /dev/null +++ b/core/templates/donors.html @@ -0,0 +1,69 @@ +{% extends 'base.html' %} +{% load static %} +{% block title %}Apoiadores - Brasil.IO{% endblock %} +{% block head %} +{{ block.super }} + + + +{% endblock %} + +{% block content %} +
+

Doadores

+
+ +
+

+ A lista abaixo é de pessoas que apoiam nossa campanha pela plataforma Apoia.se de + financiamento coletivo. + Colabore você também clicando aqui. +

+
+
+ {% for donor in donors %} +
+ + Imagem de {{ donor.name }} + +
{{ donor.name }}
+
+ {% endfor %} +
+ +
+ {% if donors.has_next %} + + {% endif %} +
+
+ + +{% endblock %}