Extend FAQ

This commit is contained in:
Jannis Portmann 2023-09-15 13:22:56 +02:00
parent f160649a59
commit ae5514861a

View file

@ -1,14 +1,25 @@
{% extends 'base.html' %}
{% load i18n %}
{% block title %}FAQ{% endblock %}
{% block meta %}<meta name="description" content="Frequently asked questions">{% endblock %}
{% block content %}
<h1 class="mb-3">Frequently Asked Questions</h1>
<h2 class="mb-3">Is it free?</h2>
<p>
Yes, pflänz.li is free to use and its source code is <a href="https://git.thisfro.ch/thisfro/pflaenz.li">publically accessible</a>.
</p>
<h2 class="mb-3">Can I help?</h2>
Yes, feel free to contact <a href="mailto:jannis@thisfro.ch">@thisfro</a>!
</p>
{% block meta %}
<meta name="description" content="{% trans "Frequently Asked Questions" %}">
{% endblock %}
{% block content %}
<h1 class="mb-3">{% trans "Frequently Asked Questions" %}</h1>
<h2 class="mb-3">{% trans "How can I trade plants?" %}</h2>
<p>
{% trans "First you need an account, so please register if you don't have one. Then you can create an offer with your plant and add wishes in your wishlist. Find another plant someone offers and offer them a trade. The person will receive an email with your contact and indicates your interest. They can then respond to you and you can agree upon the trade details, e.g. where and when to exchange the plants." %}
</p>
<h2 class="mb-3">{% trans "Is it free?" %}</h2>
<p>
{% trans "Yes, Pflänz.li is free to use and its source code is <a href='https://git.thisfro.ch/thisfro/pflaenz.li'>publicly accessible</a>." %}
</p>
<h2 class="mb-3">{% trans "Can I help?" %}</h2>
<p>
{% trans "Yes, feel free to contact <a href='mailto:jannis@thisfro.ch'>@thisfro</a>!" %}
</p>
<h2 class="mb-3">{% trans "Does Pflänz.li use tracking?" %}</h2>
<p>
{% trans "Yes Pflänz.li uses the open-source tool <a href='https://umami.is/'>umami</a>, but no cookies are needed to do that and only general anonymous data is collected." %}
</p>
{% endblock %}