mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Slight markup changes, same style overall and same form parameters as the PHP implementation. In addition, we've disabled the "left" and "right" navigation buttons when we're at the border of the table. CSS Changes: - Added similar styling to submit `<buttons>` that submit `<input>` had. - Added .results tr td[align="{left,right}"] styling to align the result table's `More -->` button to the right of the table. Signed-off-by: Kevin Morris <kevr@0cost.org>
13 lines
340 B
HTML
13 lines
340 B
HTML
{% extends "partials/layout.html" %}
|
|
|
|
{% block pageContent %}
|
|
<div class="box">
|
|
<h2>{{ "Accounts" | tr }}</h2>
|
|
|
|
{% if not users %}
|
|
{{ "No results matched your search criteria." | tr }}
|
|
{% else %}
|
|
{% include "partials/account/results.html" %}
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|