{% extends "dashboard_base.html" %} {% load markdown_deux_tags %} {% load avatar_tags %} {% block header_title %}Account{% endblock %} {% block content %}

Your Profile

{% with object.worker as worker %}
{% avatar object 250 %}
{% if user.is_authenticated %} {% else %}

Register or login to view worker contact information

{% endif %}

{% if worker.name %}{{worker.name}} ({{worker.user.username}}){% else %}{{worker}}{% endif %}
{% if worker.website %}{{worker.website|urlize}}{% endif %}


{% if worker.position%}

{{worker.position}}

{% endif %} {% if worker.city %}

Located in {{worker.city}}

{% endif %}
{% if worker.why %}Why am I a member of Code for Maine?
{{worker.why|markdown}} {% else %}

Update your profile and tell folks why you're a member of Code for Maine!

{% endif %}

Update your profile

{% endwith %}
{% if user.project_set.all %}

Active in

{% for project in user.project_set.all %} {{project}} {% endfor %}
{% endif %}
{% endblock %}