Skip to content

Commit

Permalink
Fix donation limit in the FAQ
Browse files Browse the repository at this point in the history
  • Loading branch information
tudoramariei committed May 20, 2024
1 parent d2e0848 commit 67ba0c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions backend/donations/views/site.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ def get(self, request, *args, **kwargs):
context = {
"title": _("Frequently Asked Questions"),
"contact_email": settings.CONTACT_EMAIL_ADDRESS,
"limit": settings.DONATIONS_LIMIT,
}
return render(request, self.template_name, context)

Expand Down
4 changes: 3 additions & 1 deletion backend/templates/v1/faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,9 @@ <h3>FAQ – Întrebări frecvente</h3>
<div class="expanding-panel">
<p>
Redirecționarea procentului din impozitul pe venit se face prin depunerea declarației 230
până la data de 25 mai.
până la data de
{{ limit.date.strftime("%d.%m.%Y") }}
.
Există trei variante de a depune declarația:
</p>
<ol>
Expand Down

0 comments on commit 67ba0c3

Please sign in to comment.