{% extends 'profile/base.html' %} {% load i18n %} {% block title %}{% trans 'Profile' %}{% endblock %} {% block content %}
{% trans 'Change avatar' %}

{{ user_view.first_name }}

{{ user_view.last_name }}

{{ user_view.username }} {{ user_view.email }} {% if user_view.description %} {{ user_view.description }} {% endif %}
{% trans 'Wall' %} {% include 'tribs.html' with user_from_template=user_view.first_name %} {% trans 'Edit Profile' %}
{% csrf_token %}
  • {{ editForm.descripcion }}
{% trans 'Follows' %}
  • {% verbatim %} {{ follow.first_name }} {{ follow.last_name }} {% endverbatim %}

    {% verbatim %}@{{ follow.username }}{% endverbatim %}

  • {% trans 'No matches found!' %}

    {% trans 'We were unable to find a user that matches your query.' %}

  • {% trans 'You are not following anyone' %}

    {% trans 'You are not following any user in Tribus. See if your friends are in Tribus by entering their names in the search bar on the top of the page.' %}

{% verbatim %} {{ currentPage+1 }}/{{ numberOfPages() }} {{ filtername.length }} {% endverbatim %}
{% trans 'Followers' %}
  • {% verbatim %} {{ follow.first_name }} {{ follow.last_name }} {% endverbatim %}

    {% verbatim %}@{{ follow.username }}{% endverbatim %}

  • {% trans 'No matches found!' %}

    {% trans 'We were unable to find a user that matches your query.' %}

  • {% trans 'You have no followers!' %}

    {% trans 'You have no followers (yet). Start following people and write about you so that other people take interest in what you write.' %}

{% verbatim %} {{ currentPage+1 }}/{{ numberOfPages() }} {{ filtername.length }} {% endverbatim %}
{% endblock %} {% block scripts %} {% endblock %}