{% extends 'memberapp_users/layout_blank.html' %} {% block head %} {% endblock %} {% block title %}{{ Auth.getSociety(society_id)['society_intial'] }} - Profile Update{% endblock %} {% block content %}
Sno | Membership no | Full name | Email id / Mobile |
City | District | Profile Updated at |
---|---|---|---|---|---|---|
{{loop.index}} | {{user.membership_no or ""}} | {{user.prefix or ""}}{{user.full_name or ""}} |
{% if society_id|int == 1 %}
{{ user.email or '' }}
{% else %}
{{ Helper.email_mask(user.email) or "" }}
{% endif %}
{% if society_id|int == 1 %} {{user.mobile or ''}} {% else %} {{Helper.mobile_mask(user.mobile) or ""}} {% endif %} |
{{user.city or ""}} | {% if user.district =='Others' %} {{user.other_districts or ''}} {% else %} {{user.district or ""}} {% endif %} | {% if user.profile_updated_at %} {% if Auth.getSociety(society_id) and Auth.getSociety(society_id)['profile_validate_from'] %} {% set profile_valid_date = Auth.getSociety(society_id)['profile_validate_from']%} {% if Helper.dt_compere_greaterthen(user.profile_updated_at.strftime('%Y-%m-%d'),profile_valid_date|string) %} {{user.profile_updated_at.strftime('%d-%m-%Y %H:%M:%S')}} {% endif %} {% else %} {{user.profile_updated_at.strftime('%d-%m-%Y %H:%M:%S')}} {% endif %} {% endif %} |