{% extends 'base.html.twig' %} {% block title %}{{ 'My Users'|phrase }}{% endblock title %} {% block head_description %}{{ 'Manage my users'|phrase }}{% endblock head_description %} {% block head_keyword %}{{ 'manage, users'|phrase }}{% endblock head_keyword %} {% block og_title %}{{ 'My Users'|phrase }}{% endblock og_title %} {% block og_description %}{{ 'Manage my users'|phrase }}{% endblock og_description %} {% block head_style %} {{ parent() }} {% endblock head_style %} {% block page_header_h1 %} {{ 'People I Referred'|phrase }} {% endblock page_header_h1 %} {% block content %} {% for userList in pagination %} {% endfor %}
{{ knp_pagination_sortable(pagination, 'Name'|phrase, 'ul.first_name_string') }} {{ knp_pagination_sortable(pagination, 'Surname'|phrase, 'ul.last_name_string') }} {{ knp_pagination_sortable(pagination, 'Username'|phrase, 'ul.username') }} {{ knp_pagination_sortable(pagination, 'Registered'|phrase, 'ul.is_live') }} {{ 'Credits Earned'|phrase }} {{ 'Actions'|phrase }} {{ 'Refer More People'|phrase }}
{{ userList.fullNameString() }} {{ userList.username }} {{ userList.isActiveString }} {{ render (controller("@UserBundle/UserList/creditsEarned", { 'userList': loggedInUser, 'referredUser': userList } )) }}
{% if not userList.isActive %} {{ 'Invite Again'|phrase }} {% else %} - {% endif %}
{% endblock content %}