39 lines
1.4 KiB
PHP
39 lines
1.4 KiB
PHP
<div class="container bugs py-4">
|
|
<div class="d-flex justify-content-between align-items-center mb-4 flex-wrap gap-2">
|
|
<h4 class="mb-0">{{lang('bugs','bugs')}}</h4>
|
|
@if(Session::select('userid'))
|
|
<a href="https://bugs.pisilinux.og/new" class="btn-modern btn-modern-primary" style="padding:8px 20px;font-size:0.85rem;">
|
|
<i class="fa fa-plus me-1"></i>{{lang('bugs','new_bugs')}}
|
|
</a>
|
|
@else
|
|
<a href="https://members.pisilinux.og" class="btn-modern btn-modern-secondary" style="padding:8px 20px;font-size:0.85rem;">
|
|
{{lang('forum','login_to_open_topic')}}
|
|
</a>
|
|
@endif
|
|
</div>
|
|
|
|
<div class="glass-card p-0 overflow-hidden">
|
|
<div class="table-responsive">
|
|
<table class="bugs-table">
|
|
<thead>
|
|
<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="https://bugs.pisilinux.og/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>
|
|
</div> |