mirror of
https://github.com/Superredstone/patrickcanal.it.git
synced 2026-09-20 17:51:12 +02:00
9 lines
283 B
HTML
9 lines
283 B
HTML
{% extends "base.html" %}
|
|
{% load i18n static %}
|
|
{% block content %}
|
|
<div class="container mt-4 fs-2">
|
|
<div>{% trans "Thanks for contacting me!" %}</div>
|
|
<a href="{% url 'index' %}" class="btn btn-primary mt-4">{% trans "Go back" %}</a>
|
|
</div>
|
|
{% endblock %}
|