blob: 8e9a680d086814a3afe159ee975b3066a747336a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% load i18n %}
<p>{% trans "Some useful links:" %}</p>
<ul>
<li><a href="https://ishtar.readthedocs.io/fr/ISHTAR_DOCUMENT_VERSION/" target="_blank">
{% trans "Documentation" %}</a>{% trans ":"%}
{% trans "inline documentation." %}
</li>
<li><a href="https://discourse.ishtar-archeo.net/" target="_blank">
{% trans "Forum" %}</a>{% trans ":"%}
{% trans "need help? find a new bug? a fantastic feature to propose? Here is the place to go." %}
</li>
<li><a href='https://ishtar-archeo.net' target="_blank">
{% trans "Presentation site and blog" %}</a>{% trans ":"%}
{% trans "stay tuned with Ishtar news!" %}
</li>
<li><a href="https://gitlab.com/iggdrasil/ishtar" target="_blank">
{% trans "Source code" %}</a> –
<a href="https://tickets.iggdrasil.net/projects/ishtar" target="_blank">{% trans "tickets" %}</a>{% trans ":"%}
{% trans "where the magic happens." %}
</li>
</ul>
|