{% load i18n %}

{% blocktrans %}A following user was deleted from the {{ SITE_GLOBAL_SITEDISPLAYNAME }}. The details are given below:{% endblocktrans %}

{% trans "Deleted User:" %}
     
{% trans "Name:" %} {{ profile.user.get_full_name }}
  {% trans "Email:" %} {{ profile.user.email }}
  {% trans "Username:" %} {{ profile.user.username }}
     
{% trans "User Deleted By:" %}
     
  {% trans "Name:" %} {{ request.user.get_full_name }}
  {% trans "Email:" %} {{ request.user.email }}
  {% trans "Username:" %} {{ request.user.username }}
     

{% trans "If you would like to view all recently deleted users, go to:" %} {{ SITE_GLOBAL_SITEURL }}{% url event_log.search %}?q=123000

{% trans "Time submitted:"%} {% now "D d M Y P" %}