diff options
| author | Michael <[email protected]> | 2017-05-22 14:53:00 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-05-22 14:53:00 -0400 |
| commit | 1df8cf09a2de4b028923d2db7213a369a579cb88 (patch) | |
| tree | f2c02eced31357ecdfab33126b1897de4b4879c0 | |
| parent | 2be40475029692d0b2e9eebb284353e02d9951c5 (diff) | |
| download | project-unite-1df8cf09a2de4b028923d2db7213a369a579cb88.tar.gz project-unite-1df8cf09a2de4b028923d2db7213a369a579cb88.tar.bz2 project-unite-1df8cf09a2de4b028923d2db7213a369a579cb88.zip | |
bugs
| -rw-r--r-- | Project-Unite/Views/Moderator/Users.cshtml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Project-Unite/Views/Moderator/Users.cshtml b/Project-Unite/Views/Moderator/Users.cshtml index 70cb92f..8ad4ac4 100644 --- a/Project-Unite/Views/Moderator/Users.cshtml +++ b/Project-Unite/Views/Moderator/Users.cshtml @@ -14,8 +14,9 @@ <div class="tab-content" > @for (int i = 1; i < pages; i++) { + string a = (i == 1) ? "active" : ""; var page = ordered.GetItemsOnPage(i, 15); -<table class="table" id="u_page_@i"> +<table class="tab-pane fade in @a table" id="u_page_@i"> <tr> <th style="width:85%">User</th> <th>Actions</th> |
