* thanks to @maxwell for the initial work on this port admin pages to bootstrap * improve user view on admin search page * add 'close account' link to each user in the search results * keep the same blue color for the admin menu some refactoring of the routes and the admin code * try to be more RESTful (possibly) * use a 'UserSearch' model for search parameters and querying add changelog entry
15 lines
436 B
Text
15 lines
436 B
Text
|
|
- content_for :head do
|
|
= stylesheet_link_tag :admin
|
|
|
|
#admin_nav
|
|
%h2
|
|
= t('.pages')
|
|
%ul
|
|
%li= link_to t('.user_search'), user_search_path
|
|
%li= link_to t('.weekly_user_stats'), weekly_user_stats_path
|
|
%li= link_to t('.pod_stats'), pod_stats_path
|
|
%li= link_to t('.report'), report_index_path
|
|
%li= link_to t('.correlations'), correlations_path
|
|
%li= link_to t('.sidekiq_monitor'), sidekiq_path
|
|
|