mirror of
https://github.com/Xevion/runnerspace.git
synced 2025-12-09 10:08:33 -06:00
Fix uneven number of users on Browse page breaking templating
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
{% block content %}
|
||||
<div class="user-list">
|
||||
{% for user_row in users|batch(2, ' ') %}
|
||||
{% for user_row in users|batch(2) %}
|
||||
<div class="user-list-row">
|
||||
{% for user in user_row %}
|
||||
<div class="user-box">
|
||||
|
||||
Reference in New Issue
Block a user