{% extends "layout.html" %} {% block content %}

{{ user.login }} {{ _('is the creator of the following object(s):') }}

{% for object in user.objects if object.is_public %}
{{ object.name }} {{ object.schema.name }}
{{ object.description }}
{% endfor %}
{% endblock %}