Files
2026-07-01 16:44:17 +03:00

84 lines
2.7 KiB
PHP

<div class="container">
<div class="col-lg-12 mt-4 mb-4">
@if(Session::select('userid')):
<a href="/bugs/new" class="btn btn-pill btn-primary">{{lang('bugs','new_bugs')}}</a>
@else
<a href="/member">
<button class="form-control btn btn-primary alert1 mb-2" style="height: 38px;margin-bottom: 3px;">{{lang('forum','login_to_open_topic')}}</button>
</a>
@endif
<style>
.bg-success{
color: #fff !important;
}
</style>
</div>
<!-- sol taraf -->
<div class="col-lg-12">
<div class="card">
<div class="card-status bg-success"></div>
<div class="card-header">
<h3 class="card-title">BUGS/{{lang('bugs','package_requests')}}</h3>
</div>
<div class="card-content">
<div class="containfer">
<div class="table-responsive">
<table class="table table-vcenter table-striped">
<thead class="bg-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="/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>
<!--
<div class="table-responsive">
<table class="table table-striped table-vcenter data-table">
<thead class="thead-dark">
<tr>
<th width="100">Tarih</th>
<th>{{lang('bugs','title')}}</th>
<th>{{lang('bugs','adding')}}</th>
<th width="100">{{lang('butaskTypeNamegs','tasktype')}}</th>
<th width="100">{{lang('bugs','status')}}</th>
</tr>
</thead>
<tbody>
@foreach (taskTypeList() as $key)
<tr>
<td>{{tcevir($key->createdate)}}</td>
<td><a href="/bugs/detail/{{$key->id}}/{{$key->titleSeo}}">{{$key->title}}</a></td>
<td>{{username($key->userid)}}</td>
<td class="text-nowrap">{{taskTypeName($key->tasktype)}}</td>
<td class="text-nowrap">{{status($key->status)}}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
-->
</div>
</div>
</div>