{% extends 'emails/base.txt' %}

{% block main %}
{% if approved %}
We are glad to inform you that your suggestion for
{% if suggestion_type == 'satellite' %}
satellite "{{ suggestion_display }}"
{% else %}
transmitter of satellite "{{ satellite_display }}"
{% endif %}
has been approved.

{% if url %}
Link: {{ url }}
{% endif %}
{% if review_message %}
Approval note:
{{ review_message }}
{% endif %}
Thank you for your contribution!
{% else %}
Thank you for your contribution, unfortunately your suggestion for
{% if suggestion_type == 'satellite' %}
satellite "{{ suggestion_display }}"
{% else %}
transmitter of satellite "{{ satellite_display }}"
{% endif %}
has been rejected.

{% if url %}
Link: {{ url }}
{% endif %}
{% if review_message %}
Rejection reason:
{{ review_message }}
{% endif %}
We encourage you to fix possible issues and make a new suggestion.
Don't hesitate to contact us in https://community.libre.space if you need any further support.
{% endif %}
{% endblock %}
