{% extends 'base.html' %} {% load static %} {% block title %}Social Account Details - Account Management{% endblock %} {% block content %}
Account Information
{% if object.provider == 'google' %} {% elif object.provider == 'microsoft' %} {% elif object.provider == 'github' %} {% elif object.provider == 'linkedin' %} {% elif object.provider == 'facebook' %} {% elif object.provider == 'twitter' %} {% else %} {% endif %}
{{ object.provider|default:"Google"|title }} OAuth 2.0 Authentication
{{ object.email|default:"john.smith@gmail.com" }} {% if object.email_verified %} {% else %} {% endif %}
{{ object.display_name|default:"John Smith" }}
{% if object.is_active %} Active {% else %} Inactive {% endif %}
{% if object.login_enabled %} Enabled {% else %} Disabled {% endif %}
{{ object.uid|default:"1234567890" }}
{{ object.date_joined|default:"January 15, 2024"|date:"F d, Y" }} {{ object.date_joined|default:"3 months ago"|timesince }} ago
{{ object.last_login|default:"Today 09:30 AM"|date:"M d, Y g:i A" }} {{ object.last_login|default:"2 hours ago"|timesince }} ago
Permissions & Scopes
Granted Permissions
Profile Information

Access to basic profile data (name, email, avatar)

Email Address

Access to primary email address

{% if object.provider == 'google' %}
Calendar Access

Read calendar events and availability

{% endif %} {% if object.provider == 'github' %}
Repository Access

Read public repositories

{% endif %}
Not Granted
Write Access

Post or modify content on your behalf

Contacts

Access to your contact list

File Access

Access to your files and documents

Connection History
Date & Time Action IP Address Location Status
Today 09:30 AM Apr 15, 2024 Login 192.168.1.100 New York, NY Success
Yesterday 02:15 PM Apr 14, 2024 Token Refresh 192.168.1.100 New York, NY Success
Apr 13, 08:45 AM Apr 13, 2024 Login 10.0.0.50 Office Network Success
Apr 12, 11:20 AM Apr 12, 2024 Failed Login 203.0.113.45 Unknown Location Failed
Quick Actions

Remove Account
Usage Statistics
Total Logins 127
This Month 23
Success Rate 98.4%
Failed Attempts 2
Security Information
OAuth 2.0 Secure authentication protocol
Token Encryption Access tokens are encrypted
Token Expiry Tokens expire automatically
Privacy Protected Limited data access only
{% endblock %}