{% extends 'email_templates/email_layout.html' %} {% load i18n %} {% load string_utils %} {% block title %}{% translate "you've been invited!"|capfirstletter %}{% endblock title %} {% block content %}

{% blocktranslate with name=object.name trimmed %} You've been invited to {{ name }}! {% endblocktranslate %}


{% blocktranslate with game_master=user.username place_name=object.place.name trimmed %} {{ game_master }} invites you to join into an epic quest in the world of {{ place_name }}. {% endblocktranslate %}

{% trans "check this world here"|capfirst %} {% url 'roleplay:place:detail' object.place.pk as place_link %} {{ object.place.name }}

{% blocktranslate with name=object.name trimmed %} The adventure of "{{ name }}" awaits for you! {% endblocktranslate %}

{% url "roleplay:campaign:join" pk=object.pk token=token as join_url %} {% translate "join now!"|capfirstletter %}
{% translate "if you can't click on the link here's raw"|capfirst %}
{{ scheme }}://{{ host }}{{ join_url }}
{% endblock content %}