{% extends "base.html" %} {% block title %}User Dashboard{% endblock %} {% block content %}

Welcome, {{ user.username }}

User Profile

Username: {{ user.username }}

Role: {{ user.role }}

{# Edit Profile #}
Storage Information
{% if storage_limit > 0 %}

Storage Used: {{ storage_used }} MB

Storage Available: {{ storage_available }} MB

{% set usage_percent = (storage_used / storage_limit * 100) if storage_limit > 0 else 0 %} {% set progress_class = 'bg-success' if usage_percent < 50 else 'bg-warning' if usage_percent < 80 else 'bg-danger' %}
{{ usage_percent | round(1) }}%
{% if storage_available < (0.1 * storage_limit) %} {% elif storage_available < (0.25 * storage_limit) %} {% endif %} {% else %}

Storage Used: {{ storage_used }} MB

Storage Available: Unlimited

{% endif %}
Create New Paste
Advanced Search
Your Paste Statistics:
Total Pastes
{{ total_pastes }}
Text Pastes
{{ total_text_pastes }}
File Pastes
{{ total_file_pastes }}
Media Pastes
{{ total_media_pastes }}
Pastes by Language and Type
Your Pastes
{% if pastes|length > 0 %} {% for paste in pastes %} {% endfor %}
ID Filename Type Size (bytes) Created At Actions
{{ paste.id }} paste_{{ paste.id }}.{{ paste.get_extension() }} {{ paste.get_type() }} {{ paste.size }} {{ paste.created_at.strftime('%Y-%m-%d %H:%M:%S') }} View
{% else %}

You do not have any pastes yet.

{% endif %}
Your Private Pastes
{% if private_pastes.items %} {% for paste in private_pastes.items %} {% endfor %}
ID Filename Type Size (bytes) Created At Actions
{{ paste.id }} paste_{{ paste.id }}.{{ paste.get_extension() }} {{ paste.get_type() }} {{ paste.size }} {{ paste.created_at.strftime('%Y-%m-%d %H:%M:%S') }} View
{% if private_pastes.pages > 1 %} {% endif %} {% else %}

You do not have any private pastes yet.

{% endif %}
Your Favorites
{% if favorite_pastes %} {% for fav in favorite_pastes %} {% endfor %}
ID Filename Type Size (bytes) Created At Actions
{{ fav.id }} {{ fav.filename if fav.filename else "Paste " ~ fav.id }} {{ fav.get_type() }} {{ fav.size }} {{ fav.created_at.strftime('%Y-%m-%d %H:%M:%S') }} View
{% if favorite_pagination.pages > 1 %} {% endif %} {% else %}

You don't have any favorites yet.

{% endif %}
Shared Pastes
{% if shared_pastes %} {% for sp in shared_pastes %} {% endfor %}
ID Title Owner Type Size (bytes) Created At Actions
{{ sp.id }} {{ sp.title or "Untitled" }} {{ sp.owner.username }} {{ sp.get_type() }} {{ sp.size }} {{ sp.created_at.strftime('%Y-%m-%d %H:%M:%S') }} View {% if sp.has_edit_permission(current_user) %} Edit {% endif %}
{% if shared_pastes|length > 10 %} {% endif %} {% else %}

You don't have any shared pastes yet.

{% endif %}
Account Settings
{% endblock %} {% block footer %} {{ super() }} {% endblock %}