{% extends 'email_templates/email_layout.html' %} {% load i18n %} {% block content %}

{% blocktranslate with username=user.username trimmed %} User {{ username }} wants to join your adventure! {% endblocktranslate %}

{% blocktranslate with username=user.username email=user.email trimmed %} {{ username }} has sent you a request to join your adventure. To accept their request go to the edit page of the campaign then 'Invite players' and add the following email address: {{ email }}. {% endblocktranslate %}

{% url 'roleplay:campaign:edit' object.pk as campaign_detail_url %} {% translate "go to campagin"|capfirst %}
{% translate "if you can't click on the link here's raw"|capfirst %}
{{ scheme }}://{{ host }}{{ campaign_detail_url }}
{% endblock content %}