32 lines
1.2 KiB
PHP
32 lines
1.2 KiB
PHP
<div class="container bugs">
|
|
@if(Session::select('userid')):
|
|
<a href="{{URL::base('/bugs/new')}}" class="btn btn-primary text-white btn-sm mb-3 new_bugs">{{lang('bugs','new_bugs')}}</a>
|
|
@else
|
|
<a href="{{URL::base('/member')}}">
|
|
<button class="btn btn-primary btn-sm text-white alert1 mb-2" style="height: 38px;margin-bottom: 3px;">{{lang('forum','login_to_open_topic')}}</button>
|
|
</a>
|
|
@endif
|
|
|
|
|
|
|
|
<table class="table table-striped table-bordered">
|
|
<thead class="table-dark text-white text-center">
|
|
<tr>
|
|
<th>Tarih</th>
|
|
<th>{{lang('bugs','title')}}</th>
|
|
<th>{{lang('bugs','tasktype')}}</th>
|
|
<th>{{lang('bugs','status')}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (taskTypeList() as $key)
|
|
<tr>
|
|
<td class="text-center">{{tcevir($key->createdate)}}</td>
|
|
<td><a href="{{URL::base('/bugs/detail/'.$key->id.'/'.$key->titleSeo)}}">{{$key->title}}</a></td>
|
|
<td class="text-center">{{taskTypeName($key->tasktype)}}</td>
|
|
<td class="text-center">{{status($key->status)}}</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div> |