{% load i18n %} {% load base_filters %}
{% blocktrans %}The following user's account has been updated/modified at {{ SITE_GLOBAL_SITEDISPLAYNAME }}. The details are listed below: {% endblocktrans %}
{% trans "Name:" %} | {{ profile.user.get_full_name}} |
{% trans "The list of updated items include:" %}
Field |
Old Value |
New Value |
{% trans "First Name" %} |
{% if old_user.first_name %}
{{ old_user.first_name }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.user.first_name }} |
{% trans "Initial" %} |
{% if old_profile.initials %}
{{ old_profile.initials }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.initials}} |
{% trans "Last Name" %} |
{% if old_user.last_name %}
{{ old_user.last_name }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.user.last_name }} |
{% trans "Position Title" %} |
{% if old_profile.position_title %}
{{ old_profile.position_title }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.position_title}} |
{% trans "Display Name" %} |
{% if old_profile.display_name %}
{{ old_profile.display_name }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.display_name}} |
{% trans "Phone" %} |
{% if old_profile.phone %}
{{ old_profile.phone|phonenumber }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.phone|phonenumber}} |
{% trans "Phone2" %} |
{% if old_profile.phone2 %}
{{ old_profile.phone2|phonenumber }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.phone2|phonenumber}} |
{% trans "Home Phone" %} |
{% if old_profile.home_phone %}
{{ old_profile.home_phone|phonenumber }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.home_phone|phonenumber}} |
{% trans "Work Phone" %} |
{% if old_profile.work_phone %}
{{ old_profile.work_phone|phonenumber }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.work_phone|phonenumber}} |
Fax |
{% if old_profile.fax %}
{{ old_profile.fax }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.fax}} |
{% trans "Mobile Phone" %} |
{% if old_profile.mobile_phone %}
{{ old_profile.mobile_phone }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.mobile_phone}} |
{% trans "Email2" %} |
{% if old_profile.email2 %}
{{ old_profile.email2 }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.email2}} |
{% trans "Website" %} |
{% if old_profile.url %}
{{ old_profile.url }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.url}} |
{% trans "Receive Email" %} |
{% if old_profile.direct_mail %}
{% trans "Yes" %} |
{% else %}
{% trans "No" %}
{% endif %}
{% if profile.direct_mail %}
{% trans "Yes" %} |
{% else %}
{% trans "No" %}
{% endif %}
{% trans "Company" %} |
{% if old_profile.company %}
{{ old_profile.company }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.company }} |
{% trans "Department" %} |
{% if old_profile.department %}
{{ old_profile.department }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.department }} |
{% trans "Mailing Name" %} |
{% if old_profile.mailing_name %}
{{ old_profile.mailing_name }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.mailing_name }} |
{% trans "Address" %} |
{% if old_profile.address %}
{{ old_profile.address }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.address }} |
{% trans "Address2" %} |
{% if old_profile.address2 %}
{{ old_profile.address2 }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.address2 }} |
{% trans "City" %} |
{% if old_profile.city %}
{{ old_profile.city }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.city }} |
{% trans "City" %} |
{% if old_profile.state %}
{{ old_profile.state }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.state }} |
{% trans "Zipcode" %} |
{% if old_profile.zipcode %}
{{ old_profile.zipcode }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.zipcode }} |
{% trans "Country" %} |
{% if old_profile.country %}
{{ old_profile.country }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.country }} |
{% trans "Username" %} |
{% if old_user.username %}
{{ old_user.username }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.user.username }} |
{% trans "Interactive" %} |
{% if old_user.is_active %}
{% trans "Yes" %} |
{% else %}
{% trans "No" %}
{% endif %}
{% if profile.user.is_active %}
{% trans "Yes" %} |
{% else %}
{% trans "No" %}
{% endif %}
{% trans "Status" %} |
{% if old_profile.status %}
{{ old_profile.status }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.status }} |
{% trans "Notes" %} |
{% if old_profile.notes %}
{{ old_profile.notes }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.notes }} |
{% trans "Time Zone" %} |
{% if old_profile.time_zone %}
{{ old_profile.time_zone }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.time_zone }} |
{% trans "Language" %} |
{% if old_profile.language %}
{{ old_profile.language }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.language }} |
{% trans "Gender" %} |
{% if old_profile.sex %}
{{ old_profile.sex }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.sex }} |
{% trans "Spouse" %} |
{% if old_profile.spouse %}
{{ old_profile.spouse }} |
{% else %}
{% trans "BLANK" %}
{% endif %}
{{ profile.spouse }} |
{% blocktrans %}To view this user's record, click here:{% endblocktrans %} {{ SITE_GLOBAL_SITEURL }}{% url profile profile.user.username %}
{% blocktrans %}Time submitted:{% endblocktrans %} {% now "D d M Y P" %}