{% extends "base.html" %} {% load url from future %} {% load i18n %} {% load profile_tags %} {% load crispy_forms_tags %} {% block head_title %}Profile for {{ user }}{% endblock %} {% block body %}

{% blocktrans %}{{ user }}{% endblocktrans %}

{% if request.user == user %}

{% trans "Edit my profile" %}

{% endif %} {% if local_profile.github_account %}

{% trans "Github account" %}: {{ local_profile.github_account }}

{% endif %} {% if local_profile.bitbucket_url %}

{% trans "BitBucket account" %}: {{ local_profile.bitbucket_url }}

{% endif %} {% if local_profile.google_code_url %}

{% trans "Google Code account" %}: {{ local_profile.google_code_url|urlize }}

{% endif %}
{% if local_profile.my_packages %}

{% trans "Packages Contributed To" %}

{% for package in local_profile.my_packages %} {% endfor %}
# {% trans "Package" %} {% trans "Repo" %}
{{ forloop.counter }} {{ package.title }} {{ package.repo.title }}
{% endif %}

{% trans "Packages Used" %}

{% endblock %}