{% extends "base.html" %} {% load i18n plmapp_tags %} {% load humanize %} {# Home page #} {% block toolbar %} {% endblock %} {% block leftcolumn %} {% endblock %} {% block reference %}

{% with user.get_full_name as full_name %} {% blocktrans %}Welcome {{full_name}}{% endblocktrans %} {% endwith %}

{% endblock %} {% block content %}
{% include "blocks/supermenu.html" %}
{% with pending_invitations_owner as pending_invitations %} {% if pending_invitations %}

{% trans "Groups that you own: pending invitations" %}

{% include "groups/pending_invitations.html" with prefix="yes" %}
{% endif %} {% endwith %} {% with pending_invitations_guest as pending_invitations %} {% if pending_invitations %}

{% trans "Groups that you may join: pending invitations" %}

{% include "groups/pending_invitations.html" with prefix="yes" %}
{% endif %} {% endwith %} {% endblock %} {% block scripts %} {% endblock %}