2016-07-22 19:36:24 +08:00
|
|
|
@extends('admin.master')
|
|
|
|
|
2016-09-25 10:02:40 +08:00
|
|
|
@section('title', trans('general.user-manage'))
|
2016-07-22 19:36:24 +08:00
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<!-- Content Wrapper. Contains page content -->
|
|
|
|
<div class="content-wrapper">
|
|
|
|
<!-- Content Header (Page header) -->
|
|
|
|
<section class="content-header">
|
|
|
|
<h1>
|
2018-07-17 11:06:55 +08:00
|
|
|
@lang('general.user-manage')
|
2016-07-22 19:36:24 +08:00
|
|
|
</h1>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<!-- Main content -->
|
|
|
|
<section class="content">
|
|
|
|
<div class="box">
|
2016-12-31 11:38:07 +08:00
|
|
|
<div class="box-body table-bordered">
|
|
|
|
<table id="user-table" class="table table-hover">
|
2016-07-22 19:36:24 +08:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2018-07-17 11:06:55 +08:00
|
|
|
<th>@lang('general.user.uid')</th>
|
|
|
|
<th>@lang('general.user.email')</th>
|
|
|
|
<th>@lang('general.user.nickname')</th>
|
|
|
|
<th>@lang('general.user.score')</th>
|
|
|
|
<th>@lang('admin.users.players-count.title')</th>
|
|
|
|
<th>@lang('admin.users.status.title')</th>
|
|
|
|
<th>@lang('general.user.register-at')</th>
|
|
|
|
<th>@lang('general.operations')</th>
|
2016-07-22 19:36:24 +08:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section><!-- /.content -->
|
|
|
|
</div><!-- /.content-wrapper -->
|
|
|
|
|
|
|
|
@endsection
|
2016-07-29 15:31:05 +08:00
|
|
|
|
|
|
|
@section('script')
|
|
|
|
<script type="text/javascript">
|
2017-07-03 20:54:19 +08:00
|
|
|
$(document).ready(function() {
|
|
|
|
$('.box-body').css(
|
|
|
|
'min-height',
|
|
|
|
$('.content-wrapper').height() - $('.content-header').outerHeight() - 120
|
|
|
|
);
|
|
|
|
});
|
2016-07-29 15:31:05 +08:00
|
|
|
</script>
|
|
|
|
@endsection
|