{% extends "layouts/base.html" %} {% load static i18n %} {% block title %} {% trans "Customers View" %} {% endblock %} {% block stylesheets %} {% endblock stylesheets %} {% block pageheader %} {% endblock pageheader %} {% block content %}

{% trans "Personal Information:" %}
{% trans "First Name:" %}
{{ profile.user_object.first_name }}
{% trans "Last Name:" %}
{{ profile.user_object.last_name }}
{% trans "Email Address:" %}
{{ profile.user_object.email }}
{% trans "Phone:" %}
{{ profile.phone_number }}
{% trans "Address:" %}
{{ profile.address }}
{% trans "City:" %}
{{ profile.city }}
{% trans "State/Province:" %}
{{ profile.state_province }}
{% trans "Country:" %}
{{ profile.country }}
{% trans "Postal Code:" %}
{{ profile.postalcode }}
{% trans "Professional Information:" %}
{% trans "Job Title:" %}
{{ profile.job_title }}
{% trans "Company:" %}
{{ profile.company }}
{% trans "Website:" %}
{{ profile.website }}
{% trans "LinkedIn Profile:" %}
{{ profile.linkedin_profile }}
{% trans "Github Profile:" %}
{{ profile.github_profile }}
{% trans "Preferences and Settings:" %}
{% trans "Language:" %}
{{ profile.language }}
{% trans "Timezone:" %}
{{ profile.timezone }}
{% trans "Notification preferences:" %}
{% trans "Email Notifications:" %}
{{ profile.notification_preferences.email_notifications|yesno:_("Enabled,Disabled") }}
{% trans "SMS Notifications:" %}
{{ profile.notification_preferences.sms_notifications|yesno:_("Enabled,Disabled") }}
{% trans "Push Notifications:" %}
{{ profile.notification_preferences.push_notifications|yesno:_("Enabled,Disabled") }}
{% trans "Privacy Settings:" %}
{% trans "Profile Visibility:" %}
{{ profile.privacy_settings.profile_visibility }}
{% trans "Search Engine Indexing:" %}
{{ profile.privacy_settings.search_engine_indexing|yesno:_("Allowed,Not Allowed") }}
{% trans "Data Sharing:" %}
{{ profile.privacy_settings.data_sharing|yesno:_("Allowed,Not Allowed") }}
{% trans "Additional Information:" %}
{% trans "Bio:" %}
{{ profile.bio | safe }}
{% trans "Interest:" %}
{{ profile.interests | safe }}
{% trans "Skills:" %}
{{ profile.skills | safe }}
{% trans "Education:" %}
{{ profile.education | safe }}
{% trans "Experience:" %}
{{ profile.experience | safe }}
{% endblock content %} {% block components %}
{% endblock components %} {% block javascripts %} {% endblock javascripts %}