more about stuff

This commit is contained in:
Laura Klünder 2018-12-17 20:31:12 +01:00
parent c1e8689e75
commit 2691c4d714
4 changed files with 28 additions and 9 deletions

View file

@ -10,6 +10,12 @@
<p>{% blocktrans %}c3nav is open source software, find out more about it on <a href="https://github.com/c3nav" rel="external" target="_blank">c3nav</a>.{% endblocktrans %}</p>
<p>{% blocktrans %}Keep yourself up to date on c3nav by following us on <a href="https://twitter.com/c3nav" rel="external" target="_blank">Twitter</a>.{% endblocktrans %}</p>
{% if team %}
<p>{% trans 'The c3nav team at this event:' %} {{ team }}</p>
{% endif %}
{% if hosting %}
<p>{% trans 'Hosting for this event was kindly provided by:' %} {{ hosting }}</p>
{% endif %}
{% if patrons %}
<p>{% blocktrans %}Development of the software was supported by the following patrons on <a href="https://patreon.com/c3nav" rel="external" target="_blank">Patreon</a>:{% endblocktrans %} {{ patrons }}</p>
{% endif %}

View file

@ -344,4 +344,6 @@ def about_view(request):
return render(request, 'site/about.html', {
'address': settings.IMPRINT_ADDRESS,
'patrons': settings.IMPRINT_PATRONS,
'team': settings.IMPRINT_TEAM,
'hosting': settings.IMPRINT_HOSTING,
})