{% extends 'foirequest/base.html' %} {% load i18n %} {% load static %} {% block title %}{% trans "Your request has been sent" %}{% endblock %} {% block body %}
{% trans 'Request sent' %}

{% if foiproject %} {% trans "Your project was created!" %} {% else %} {% trans "Your request has been sent!" %} {% endif %}

{% if foirequest %}

{% blocktrans with title=foirequest.title url=foirequest.get_absolute_url %} Your request “{{ title }}” has been sent. {% endblocktrans %}

{% trans "We will send you an email when you receive a reply from the public body." %}

{% endif %} {% if foiproject %}

{% blocktrans with title=foiproject.title url=foiproject.get_absolute_url %} Your project “{{ title }}” has been created and its requests are being sent out now. {% endblocktrans %}

{% endif %}
{% if request.user.show_newsletter %}
{% include "account/includes/newsletter_button.html" with next=url %}
{% endif %} {% block foirequest_sent_footer %}{% endblock %} {% endblock %}