{% extends "profiles/base.html" %} {% load base_filters %} {% load profile_tags %} {% load styled_forms %} {% block title %}{% trans 'User Skills'%}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %} {% if edit_mode %}

{% trans "edit user skills" %}

{% else %}

{% trans "user skills" %}

{% endif %}

{% trans "first responder information" %}

{% trans "first responder" %}:

{% trans "who you are" %}

{% trans "name" %}: {{ user_this.profile.get_name }}
{% if user_this.profile.company %} {% trans "company" %}: {{ user_this.profile.company }}
{% endif %} {% if user_this.profile.phone %} {% trans "phone" %}: {{ user_this.profile.phone|phonenumber }}
{% endif %} {% if edit_mode %}
{% csrf_token %}
{{ forms|styled_multi_forms }}
{% else %} {% trans "address" %}: {{ user_this.profile.get_address }}

{% trans "edit this information" %}

{{ skills_form|styled_form }}
{% endif %} {% endblock %}