{% extends 'base.html' %} {% block title %} Users of {{ library }} {% endblock %} {% block extra_css %} {% endblock %} {% block extra_head %} {% endblock %} {% block topsection %}
{{ library }}
These ungluers are are using {{ library }}.
{% endblock %} {% block content %}
{% include "explore.html" %}
{% if is_member %} {% for libuser in library.library_users.all %}
{{ libuser.user.username }} {{ libuser.user.profile.tagline }}
{{ libuser.user.wishlist.works.count }} books on list
{% if is_admin %}
authorized {{ libuser.date_modified|date:"M j, Y" }}
credential: {{ libuser.credential }}
{% endif %}
{% empty %} No users yet. {% endfor %} {% else %} You need to be a member of {{ library }} to see all its members. They can borrow and donate books. Perhaps you'd like to join them? {% endif %}
{% endblock %}