{% extends "cranefly/layout.html" %} {% load i18n %} {% load url from future %} {% import "_forms.html" as form_theme with context %} {% import "cranefly/macros.html" as macros with context %} {% block title %}{% if in_search -%} {{ macros.page_title(title=_('Search Users'), parent=_('Users List')) }} {% elif active_rank %} {{ macros.page_title(title=_(active_rank.name), parent=_('Users List')) }} {%- else -%} {{ macros.page_title(title=_('Users List')) }} {%- endif %}{% endblock %} {% block container %}
{% trans %}We couldn't find a member with name you entered, so we present you with some other members with names similiar to one you searched for in hopes that one of them will turn out to be member you are looking for.{% endtrans %}
{% elif active_rank and active_rank.description %}{% if in_search %}{% trans %}Found Users{% endtrans %}{% else %}{% trans %}Users in this group{% endtrans %}{% endif %} | |||
---|---|---|---|
{% if user %}
{{ user.username }} {% if user.title or (in_search and user.get_title()) %} {% endif %} {% else %} {% endif %} |
{% endfor %}
{%- if in_search -%} {% trans %}We couldn't find any members with specified name.{% endtrans %} {%- else -%} {% trans %}Looks like this group has no members...{% endtrans %} {%- endif -%}
{% endif %}{% trans %}We couldn't find a member with name you entered, so we present you with some other members with names similiar to one you searched for in hopes that one of them will turn out to be member you are looking for.{% endtrans %}
{% elif active_rank and active_rank.description %} {{ active_rank.description|markdown|safe }} {% endif %} {% if users|length > 0 %}{% if in_search %}{% trans %}Found Users{% endtrans %}{% else %}{% trans %}Users in this group{% endtrans %}{% endif %} | |
---|---|
| {% if loop.last and loop.index is odd %}
{% endif %}{% if not loop.last and loop.index is even %} |
{%- if in_search -%} {% trans %}We couldn't find any members with specified name.{% endtrans %} {%- else -%} {% trans %}Looks like there is nobody there.{% endtrans %} {%- endif -%}
{% endif %} {% endblock %}