digitalfabrik/integreat-cms

View on GitHub
integreat_cms/cms/templates/emails/welcome_email.html

Summary

Maintainability
Test Coverage
{% extends "emails/_base_email.html" %}
{% load i18n %}
{% block content %}
    {% translate "Welcome" %} {{ user.full_user_name }},
    <br />
    <br />
    {% blocktranslate trimmed %}
        You are receiving this e-mail, because an account for {{ BRANDING_TITLE }} was created for you.
    {% endblocktranslate %}
    <br />
    {% if uid and token %}
        {% translate "Please click the link below to set a password and activate your account." %}
        <br />
        <br />
        <a href="{{ base_url }}{% url 'public:activate_account' uidb64=uid token=token %}">
            {{ base_url }}{% url 'public:activate_account' uidb64=uid token=token %}
        </a>
    {% else %}
        {% translate "Please click the link below to log in with your password and to your account." %}
        <br />
        <br />
        <a href="{{ base_url }}">{{ base_url }}</a>
    {% endif %}
    <br />
    <br />
    {% translate "If clicking on the link above does not work, please copy the URL and paste it into the address bar of your browser." %}
    <br />
    {% translate "Your username is:" %} <b>{{ user.get_username }}</b>
{% endblock content %}