{% extends "scls/base.html" %} {% load i18n %} {% block title %} {% blocktrans with name=user.get_full_name %}{{ name }}{% endblocktrans %}{% endblock %} {% block content %}

{% blocktrans with name=user.get_full_name %}{{ name }}{% endblocktrans %}

Account Name:
{{ user }}
Email:
{% if request.user.is_authenticated %}
{{ user.email }} {% else %}
Please log in to see the email address. {% endif %}

{% blocktrans with name=user.first_name %}{{ name }}{% endblocktrans %}'s collections

{% include "scls/filter.html" %} {% for scl in collections %} {% include "scls/softwarecollection_preview.html" %} {% empty %}

{% blocktrans with name=user.get_full_name %}{{ name }} has not imported any collections matching the filter .{% endblocktrans %}

{% endfor %} {% include "scls/pagination.html" %} {% endblock %}