Commit 09ed8966 authored by Nicolas Widart's avatar Nicolas Widart

Translating table headers

parent f3bf069d
...@@ -7,4 +7,9 @@ return [ ...@@ -7,4 +7,9 @@ return [
'breadcrumb' => [ 'breadcrumb' => [
'media' => 'Media' 'media' => 'Media'
], ],
'table' => [
'filename' => 'Filename',
'width' => 'Width',
'height' => 'Height'
]
]; ];
...@@ -7,4 +7,9 @@ return [ ...@@ -7,4 +7,9 @@ return [
'breadcrumb' => [ 'breadcrumb' => [
'media' => 'Média' 'media' => 'Média'
], ],
'table' => [
'filename' => 'Nom de fichier',
'width' => 'Largeur',
'height' => 'Hauteur'
]
]; ];
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
.dropzone { .dropzone {
border: 1px dashed #CCC; border: 1px dashed #CCC;
min-height: 227px; min-height: 227px;
margin-bottom: 20px;
} }
</style> </style>
@stop @stop
...@@ -30,7 +31,43 @@ ...@@ -30,7 +31,43 @@
<div class="row"> <div class="row">
<div class="col-md-12"> <div class="col-md-12">
@include('flash::message') @include('flash::message')
<p>media!</p> <div class="box">
<div class="box-header">
</div>
<!-- /.box-header -->
<div class="box-body table-responsive">
<table class="data-table table table-bordered table-hover">
<thead>
<tr>
<th>{{ trans('core::core.table.created at') }}</th>
<th>{{ trans('media::media.table.filename') }}</th>
<th>{{ trans('media::media.table.width') }}</th>
<th>{{ trans('media::media.table.height') }}</th>
<th>{{ trans('core::core.table.actions') }}</th>
</tr>
</thead>
<tbody>
<tr>
<td>23/09/1990</td>
<td>filename</td>
<td>500</td>
<td>500</td>
<td>action</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>{{ trans('core::core.table.created at') }}</th>
<th>{{ trans('media::media.table.filename') }}</th>
<th>{{ trans('media::media.table.width') }}</th>
<th>{{ trans('media::media.table.height') }}</th>
<th>{{ trans('core::core.table.actions') }}</th>
</tr>
</tfoot>
</table>
<!-- /.box-body -->
</div>
<!-- /.box -->
</div> </div>
</div> </div>
@stop @stop
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment