Link arbitrary, translated contacts

This commit is contained in:
s3lph 2023-01-04 21:24:07 +01:00
parent 9e84d7b7de
commit 23c132bf83
Signed by: s3lph
GPG key ID: 8AC98A811E5BEFF5
5 changed files with 38 additions and 5 deletions

View file

@ -17,7 +17,14 @@ th_address: "Adresse"
th_hours: "Öffnungszeiten" th_hours: "Öffnungszeiten"
th_contact: "Kontakt" th_contact: "Kontakt"
contact_web: Web contacts:
web: Web
tel: Telefon
email: E-Mail
ml: Mailingliste
matrix: Matrix
xmpp: XMPP
irc: IRC
table_footer_missing: "Euer Chaostreff oder Hackerspace fehlt in dieser Liste? Lasst es uns wissen, und wir fügen euch gerne hinzu." table_footer_missing: "Euer Chaostreff oder Hackerspace fehlt in dieser Liste? Lasst es uns wissen, und wir fügen euch gerne hinzu."

View file

@ -16,7 +16,14 @@ th_address: "Address"
th_hours: "Opening Hours" th_hours: "Opening Hours"
th_contact: "Contact" th_contact: "Contact"
contact_web: Web contacts:
web: Web
tel: Phone
email: E-mail
ml: Mailing list
matrix: Matrix
xmpp: XMPP
irc: IRC
table_footer_missing: "Your Chaostreff or hackerspace is missing from this list? Let us know, we'll gladly add you to the list." table_footer_missing: "Your Chaostreff or hackerspace is missing from this list? Let us know, we'll gladly add you to the list."

View file

@ -17,7 +17,14 @@ th_address: "Adresse"
th_hours: "Heures d'ouverture" th_hours: "Heures d'ouverture"
th_contact: "Contact" th_contact: "Contact"
contact_web: Web contacts:
web: Web
tel: Téléphone
mail: E-mail
ml: Liste de Diffusion
matrix: Matrix
xmpp: XMPP
irc: IRC
table_footer_missing: "Euer Chaostreff oder Hackerspace fehlt in dieser Liste? Lasst es uns wissen, und wir fügen euch gerne hinzu." table_footer_missing: "Euer Chaostreff oder Hackerspace fehlt in dieser Liste? Lasst es uns wissen, und wir fügen euch gerne hinzu."

View file

@ -19,7 +19,15 @@ th_address: "Indirizzo"
th_hours: "Orario" th_hours: "Orario"
th_contact: "Contatto" th_contact: "Contatto"
contact_web: web contacts:
web: Web
tel: Telefono
email: E-mail
ml: Mailing list
matrix: Matrix
xmpp: XMPP
irc: IRC
table_footer_missing: "Il vostro hackerspace manca nella lista lassù? Contattaci per completare la lista per favore." table_footer_missing: "Il vostro hackerspace manca nella lista lassù? Contattaci per completare la lista per favore."

View file

@ -83,7 +83,11 @@
<td>{{ space.name }}</td> <td>{{ space.name }}</td>
<td><address>{{ space.address }}</address></td> <td><address>{{ space.address }}</address></td>
<td>{{ space.open[lang] }}</td> <td>{{ space.open[lang] }}</td>
<td><a href="{{ space.contact.web }}">{{ contact_web }}</a></td> <td>
{% for key, url in space.contact.items() %}
<a href="{{ url }}">{{ contacts[key] }}</a>
{% endfor %}
</td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>