Minor features/fixes

* Fix admin sub menus
* Show email address in people#index
* Add User Area link in navbar
* Smaller textareas on proposal#new so you don't have to scroll
* Counting of registrations, users and people
* Use datatables for users and people
* Show event type on admin/events#show
This commit is contained in:
Henne Vogelsang 2013-05-07 14:46:33 +02:00 committed by Henne Vogelsang
parent a557f3750e
commit 3022e8b8e6
11 changed files with 151 additions and 21 deletions

View file

@ -1,7 +1,11 @@
.container-fluid
.row-fluid
.span12
%table.table.table-striped.table-bordered.table-hover
%h2
Users
- if @users
= "(#{@users.length})"
%table.table.table-striped.table-bordered.table-hover#users
%thead
%th
%b Email
@ -55,3 +59,9 @@
"data-content" => user.popup_details,
"data-original-title" => ""
:javascript
$(document).ready(function() {
$('#users').dataTable( {
sPaginationType: "full_numbers"
} );
} );