rDrama/files/templates/search_users.html

8 lines
223 B
HTML
Raw Normal View History

2022-05-04 23:09:46 +00:00
{% extends "search.html" %}
{% block listing_template %}
2023-10-29 12:51:00 +00:00
<div class="row row-cols-1 row-cols-md-3 mt-3">
{% include "user_listing.html" %}
</div>
2022-05-04 23:09:46 +00:00
{% endblock %}
2023-10-29 12:51:00 +00:00
{% block listinglength %}{{users | length}}{% endblock %}