{% extends "email_base.html" %} {% load i18n %} {% load extra_tags %} {% block content %}

{% trans "Hello" %} {% user_var username %},

{% blocktrans with answer.accepted_by.username as accepter and answer.author.username as answer_author and settings.APP_SHORT_NAME as app_title and settings.APP_URL as app_url and question.get_absolute_url as question_url and question.title as question_title %} Just to let you know that {{ accepter }} has just accepted {{ answer_author }}'s answer on his question {{ question_title }}: {% endblocktrans %}

{% blocktrans %}Sincerely,
Forum Administrator{% endblocktrans %}

{% endblock %}