aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZarino Zappia <mail@zarino.co.uk>2019-09-23 11:54:11 +0100
committerZarino Zappia <mail@zarino.co.uk>2019-09-23 13:21:00 +0100
commit48c090b8fd4b0570c9a416cc73d0109815e9d742 (patch)
treeedfd82374e716cd24d1b08da62d6799d170728e4
parent7725488319ed2ae791fd993485ec34e9363e5844 (diff)
Restore single-line layout for admin index search inputs
-rw-r--r--templates/web/base/admin/index.html10
1 files changed, 7 insertions, 3 deletions
diff --git a/templates/web/base/admin/index.html b/templates/web/base/admin/index.html
index 8691dbcf8..d31334a8c 100644
--- a/templates/web/base/admin/index.html
+++ b/templates/web/base/admin/index.html
@@ -20,18 +20,22 @@ and to receive notices of updates.
</p>
[% END %]
-<div class="admin-index-search form-txt-submit-box clearfix">
+<div class="admin-index-search clearfix">
<form method="get" action="[% c.uri_for('reports') %]" accept-charset="utf-8">
- <p><label for="search_reports">[% loc('Search Reports') %]</label>
+ <label for="search_reports">[% loc('Search Reports') %]</label>
+ <div class="form-txt-submit-box">
<input type="text" class="form-control" name="search" size="30" id="search_reports" value="[% searched | html %]">
<input type="submit" class="btn" value="[% loc('Go') %]">
+ </div>
</form>
<form method="get" action="[% c.uri_for('users') %]" accept-charset="utf-8">
- <p><label for="search_users">[% loc('Search Users') %]</label>
+ <label for="search_users">[% loc('Search Users') %]</label>
+ <div class="form-txt-submit-box">
<input type="text" class="form-control" name="search" size="30" id="search_users" value="[% searched | html %]">
<input type="submit" class="btn" value="[% loc('Go') %]">
+ </div>
</form>
[% IF c.user.is_superuser %]