{% extends 'crm/base.html' %} {% load static %} {% load widget_tweaks %} {% block title %} Profile {% endblock %} {% block extra_css %} {% endblock %} {% block body %}
{% block header2 %} {% if messages %}
{% endif %}
{% csrf_token %}
Digital Business Card
{% endblock header2 %} {% block formgrid %}

Profile image

{% if request.user.profile_image %} {% with image=request.user.profile_image %}
View Acceptable formats: .jpg, .png, .tiff
Upload Image
{% endwith %} {% else %}
Acceptable formats: .jpg, .png, .tiff
Upload Image
{% endif %} {% if profile_edit_form.profile_image.errors %} {% for error in profile_edit_form.profile_image.errors %} {{ error }} {% endfor %} {% endif %}

Change password

Personal information

{% render_field profile_edit_form.first_name class="srm-input" id="fname" placeholder="Sasha" %}
{% render_field profile_edit_form.last_name class="srm-input" placeholder="Burton" %}
{% render_field profile_edit_form.company_name class="srm-input" placeholder="Burton industries" %}

Hello

{% render_field profile_edit_form.email class="srm-input" placeholder="sashaburton.io" %}
{% render_field profile_edit_form.country class="srm-input" placeholder="United States" %}
{% render_field profile_edit_form.time_zone class="srm-input crm-select2" placeholder="time_zone" %}
{% endblock formgrid %} {% include 'crm/includes/image_crop_modal.html' %} {% include 'crm/users/includes/add-sub-user.html' %} {% include 'crm/users/includes/view-image-modal.html' %} {% include 'crm/users/includes/view-sub-users.html' %} {% include 'crm/users/includes/password-change-modal.html' %}
{% endblock body %} {% block extra_js %} {% endblock extra_js %}