{% extends 'account/account_layout.html' %} {% load notifications_tags %} {% load humanize %} {% block account_head_scripts %}{% include 'account/style.html' %}{% endblock %} {% block account_title %}Profile |{% endblock %} {% block account_content %}

Hello, {{ user.username }}

You have {% notifications_unread %} new notification(s). View all


{% if followed_count > 0 %}

You are following {{ followed_count|intcomma }} port(s). View

{% else %}

You are not following any ports. To receive notifications about changes to the ports that interest you, add them to your watchlist.

{% endif %}
Connected GitHub
{% if github_handles|length > 0 %}
    {% for handle in github_handles %}
  • {{ handle }}
  • {% endfor %}
View ports ({{ ports_by_github_count|intcomma }}) Manage GitHub connections {% else %}

You have no GitHub accounts connected. To track the ports maintained by you, please add a GitHub account.

{% endif %}
Connected Emails
{% if emails|length > 0 %}
    {% for email in emails %}
  • {{ email }}
  • {% endfor %}
View ports ({{ ports_by_emails_count }}) Manage Emails {% else %}

You have no emails added to your account. To track the ports maintained by you, please add emails that you use in Portfiles.

{% endif %}
{% endblock %}