{% extends 'base.html' %} {% block content %}
Back to Dashboard
Profile Picture
{{ profile.user_name }}
{{ profile.user_email }}
{% if profile.linkedin_verified %} LinkedIn Verified {% else %} LinkedIn Not Verified {% endif %}
{{ profile.total_posts }}
Total Posts
{{ profile.scheduled_posts }}
Scheduled
{{ profile.published_posts }}
Published
Account Information
User ID #{{ profile.user_id }}
Full Name {{ profile.user_name }}
Email Address {{ profile.user_email }}
{% if profile.linkedin_user_urn %}
LinkedIn URN {{ profile.linkedin_user_urn[:20] }}...
{% endif %} {% if profile.account_created %}
Member Since {{ profile.account_created.strftime('%B %d, %Y') }}
{% endif %}
Account Status {% if profile.has_linkedin %} Active & Verified {% else %} Pending Verification {% endif %}
{% if not profile.linkedin_verified %} Verify LinkedIn {% endif %}
{% endblock %}