{% extends "base.html" %} {% load gravatar %} {% load static %} {% block title %} {{ user.username }}'s Profile {% endblock title %} {% block description %} Explore the detailed profile of {{ user.username }}. View their activity, reported bugs, social tags, badges, and other profile information. {% endblock description %} {% block keywords %} {{ user.username }}'s Profile, User Activity, Reported Bugs, Social Tags, Badges, User Details, User Profile {% endblock keywords %} {% block og_title %} {{ user.username }}'s Profile - User Activity and Details {% endblock og_title %} {% block og_description %} Access {{ user.username }}'s profile to see detailed information on their activity, bugs reported, social tags, badges, and more. Engage with their profile and stay connected. {% endblock og_description %} {% load custom_tags %} {% load i18n %} {% block head %} {% endblock head %} {% block content %} {% include "includes/sidenav.html" %}
{% if user.userprofile.avatar %} avatar {% else %} avatar {% endif %}
{{ user.username }}
@{{ user.username }}
{% if user.userprofile.role %}

{% trans "Role" %}:

{{ user.userprofile.role }}

{% endif %}
{% if request.user == user %} {% trans "Edit Profile" %} {% endif %}
{% if request.user != user %}
{% trans "Sponsor on GitHub" %}
{% endif %}
{% if user.userprofile.github_url or user.userprofile.x_username or user.userprofile.linkedin_url or user.userprofile.website_url %}
{% trans "Social Links" %}
{% if user.userprofile.github_url %} {% trans "GitHub" %} {% endif %} {% if user.userprofile.x_username %} {% trans "X (Twitter)" %} {% endif %} {% if user.userprofile.linkedin_url %} {% trans "LinkedIn" %} {% endif %} {% if user.userprofile.website_url %} {% trans "Website" %} {% endif %}
{% endif %}
{% trans "Crypto Addresses" %}
{% include "./includes/crypto_donation.html" %}
{{ my_score|default:0 }} {% trans "POINTS" %}

{% trans "Streak Details" %}


{% trans "Current Streak" %}: {{ user.userprofile.current_streak|default:"0" }}

{% trans "Longest Streak" %}: {{ user.userprofile.longest_streak|default:"0" }}

{% trans "Days Visited" %}: {{ user.userprofile.daily_visit_count|default:"0" }}

{% trans "Last Visit" %}: {{ user.userprofile.last_visit_day|date:"M d, Y"|default:"Never" }}

{% trans "Last Sizzle Check-in" %}: {{ user.userprofile.last_check_in|default:"N/A" }}

{% trans "Streak Progress" %}
{{ base_milestone }}/{{ next_milestone }}
{% trans "Current" %} {% trans "Next Milestone" %}

{% trans "Recent Activity" %}

{% if activities %} {% load gravatar %} {% load static %}
{% for activity in activities %}
{% for screenshot_activity,screenshot in activity_screenshots.items %} {% if activity == screenshot_activity and screenshot.image and screenshot.image.url %} screenshot {% endif %} {% endfor %} {% if activity.screenshot %} screenshot {% endif %}
{{ activity.description|truncatechars:35 }}
Organization logo
@{{ activity.user|default:"Anonymous" }} found a bug on {{ activity.domain_title }}

{{ activity.created|timesince }} ago.

{% endfor %}
{% trans "View all activity by" %} @{{ user.username }} {% else %}
{% trans "No Activity Yet!" %}
{% endif %}

{% trans "Issue Stats" %}

{% trans "User Stats" %}

{% trans "User Tags" %}

{% if user_related_tags %} {% for tag in user_related_tags %} {% endfor %} {% else %}
{% trans "No tags found!" %}
{% endif %}

{% trans "Monthly Report" %}

{% trans "Top Finding" %}

    {% if websites %} {% for website in websites %}
  • {{ website.total }}

    Bug{{ website.total|pluralize }}

  • {% endfor %} {% else %}
  • {% trans "Nothing Found!" %}
  • {% endif %}

{% trans "Badges" %} {% if is_mentor %} {% endif %}

{% for user_badge in user_badges %}
{% if user_badge.badge.icon %} {{ user_badge.badge.title }} {% endif %}

{{ user_badge.badge.title }}

Awarded: {{ user_badge.awarded_at|date:"M d, Y" }}

{% if user_badge.reason %}

Reason: "{{ user_badge.reason }}"

{% endif %}
{% empty %}

{% trans "No badges awarded yet!" %}

{% endfor %}
{% if repos_with_prs %}

{% trans "Overall Pull Requests" %}

{{ overall_stats.merged_count }}
{% trans "Merged" %}
{{ overall_stats.open_count }}
{% trans "Open" %}
{{ overall_stats.closed_count }}
{% trans "Closed" %}
{% trans "Rank" %}: {{ overall_stats.user_rank }}
{% for repo_name, repo_data in repos_with_prs.items %}

{{ repo_name }}

{{ repo_data.stats.merged_count }} {{ repo_data.stats.open_count }} {{ repo_data.stats.closed_count }}
{% for pr in repo_data.pull_requests %}
{{ pr.title }} {% if pr.is_merged %} {% elif pr.state == 'open' %} {% else %} {% endif %}
{% endfor %}
{% endfor %}
{% endif %}
{% comment %}
{{ user.username }}
{% if user.userprofile.avatar %} avatar {% else %} avatar {% endif %} {% if request.user == user %}
{% csrf_token %}
{% endif %}
{{ my_score|default:0 }} {% trans "POINTS" %}

Streak Details


Current Streak: {{ user.userprofile.current_streak|default:"0" }}

Longest Streak: {{ user.userprofile.longest_streak|default:"0" }}

Last Sizzle Check-in: {{ user.userprofile.last_check_in|default:"N/A" }}
Streak Progress
{{ base_milestone }}/{{ next_milestone }}
Current Next Milestone
{% if request.user == user %} {% endif %}
{% include "./includes/crypto_donation.html" %}
{% if user.userprofile.role %}
Role
{{ user.userprofile.role }}

{% endif %} {% if user.userprofile.description %}
Bio / Description
{{ user.userprofile.description }}

{% endif %} {% if user.userprofile.discounted_hourly_rate %}
Discounted Hourly Rate
{{ user.userprofile.discounted_hourly_rate }}

{% endif %}
Recent Activity
{% if activities %} {% load gravatar %} {% load static %}
{% for activity in activities %}

{% for screenshot_activity,screenshot in activity_screenshots.items %} {% if activity == screenshot_activity and screenshot.image.url %} screenshot {% endif %} {% endfor %} {% if activity.screenshot %} screenshot {% endif %}
{% endfor %}
{% trans "View All Activity by" %} {{ user.username }} {% else %}
{% trans "No Activity Yet" %}!
{% endif %}
Issue Stats
User Stats
Social Stats
User Tags
{% for tag in user_related_tags %} {% endfor %}
Monthly Report
Top Finding
    {% if websites %} {% for website in websites %}
  • {% endfor %} {% else %}
  • {% trans "Nothing Found" %}
  • {% endif %}
Badges {% if is_mentor %} {% endif %}
{% for user_badge in user_badges %}
{% if user_badge.badge.icon %} {{ user_badge.badge.title }} {% endif %}

{{ user_badge.badge.title }}

Awarded: {{ user_badge.awarded_at|date:"M d, Y" }}

{% if user_badge.reason %}

Reason: "{{ user_badge.reason }}"

{% endif %}
{% empty %}

No badges awarded yet.

{% endfor %}
{% if repos_with_prs %}

Overall Pull Requests

{{ overall_stats.merged_count }}
Merged
{{ overall_stats.open_count }}
Open
{{ overall_stats.closed_count }}
Closed
Rank: {{ overall_stats.user_rank }}
{% for repo_name, repo_data in repos_with_prs.items %}

{{ repo_name }}

{{ repo_data.stats.merged_count }} {{ repo_data.stats.open_count }} {{ repo_data.stats.closed_count }}
{% for pr in repo_data.pull_requests %}
{{ pr.title }} {% if pr.is_merged %} {% elif pr.state == 'open' %} {% else %} {% endif %}
{% endfor %}
{% endfor %}
{% endif %}
{% endcomment %} {% endblock content %}