{% extends "core/base.jinja" %} {% from 'core/macros.jinja' import user_profile_link %} {% block content %}
{% trans %}User{% endtrans %} | {% trans %}Role{% endtrans %} | {% trans %}Description{% endtrans %} | {% trans %}Since{% endtrans %} | {% for m in club.members.filter(end_date=None).order_by('-role').all() %}|
{{ user_profile_link(m.user) }} | {{ settings.SITH_CLUB_ROLES[m.role] }} | {{ m.description }} | {{ m.start_date }} | {% if m.can_be_edited_by(user) %}{% trans %}Mark as old{% endtrans %} | {% endif %}