diff options
Diffstat (limited to 'templates/web/base/admin/index.html')
-rw-r--r-- | templates/web/base/admin/index.html | 47 |
1 files changed, 22 insertions, 25 deletions
diff --git a/templates/web/base/admin/index.html b/templates/web/base/admin/index.html index 8691dbcf8..88c7ff959 100644 --- a/templates/web/base/admin/index.html +++ b/templates/web/base/admin/index.html @@ -20,34 +20,40 @@ 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 %] - <form method="get" action="[% c.uri_for('bodies') %]"> - <label for="search_body">[% loc('Edit body details') %]</label> - <select class="form-control" id="search_body" name="body"> - [% FOREACH body IN bodies %] - [%- SET id = body.id %] - <option[% IF body.deleted %] class="adminhidden"[% END %] value="[% body.id %]"> - [% body.name | html %] - [%- IF body.parent %], [% body.parent.name | html %][% END -%] - </option> - [% END %] - </select> - <input type="submit" class="btn" value="[% loc('Go') %]"> - </form> +<form method="get" action="[% c.uri_for('bodies') %]"> + <label for="search_body">[% loc('Edit body details') %]</label> + <div class="form-txt-submit-box"> + <select class="form-control" id="search_body" name="body"> + [% FOREACH body IN bodies %] + [%- SET id = body.id %] + <option[% IF body.deleted %] class="adminhidden"[% END %] value="[% body.id %]"> + [% body.name | html %] + [%- IF body.parent %], [% body.parent.name | html %][% END -%] + </option> + [% END %] + </select> + <input type="submit" class="btn" value="[% loc('Go') %]"> + </div> +</form> [% END %] </div> @@ -68,13 +74,4 @@ and to receive notices of updates. </table> [% END %] -<h2>[% loc('Stats') %]</h2> -[% INCLUDE 'status/stats.html' admin_include_users=1 %] - -[% IF c.cobrand.admin_show_creation_graph -%] - <p> - <a href="[% c.config.BASE_URL %]/fms-live-creation.png" class="admin-offsite-link">[% loc('Graph of problem creation by status over time') %]</a> - </p> -[% END -%] - [% INCLUDE 'admin/footer.html' %] |