mirror of
https://github.com/Karaka-Management/oms-Kanban.git
synced 2026-01-10 19:08:41 +00:00
template fixes + bug fixes + style fixes
This commit is contained in:
parent
2e53518737
commit
104c3adb3f
|
|
@ -84,7 +84,7 @@ final class BackendController extends Controller
|
|||
->where('tags/title/language', $request->header->l11n->language)
|
||||
->sort('createdAt', OrderType::DESC)
|
||||
->limit(20)
|
||||
->execute();
|
||||
->executeGetArray();
|
||||
|
||||
$view->data['boards'] = $list;
|
||||
|
||||
|
|
@ -162,7 +162,7 @@ final class BackendController extends Controller
|
|||
->where('tags/title/language', $request->header->l11n->language)
|
||||
->sort('createdAt', OrderType::DESC)
|
||||
->limit(25)
|
||||
->execute();
|
||||
->executeGetArray();
|
||||
|
||||
$view->data['boards'] = $list;
|
||||
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ final class SearchController extends Controller
|
|||
->where('tags/title/language', $response->header->l11n->language)
|
||||
->sort('createdAt', OrderType::DESC)
|
||||
->limit(8)
|
||||
->execute();
|
||||
->executeGetArray();
|
||||
|
||||
$results = [];
|
||||
foreach ($docs as $doc) {
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ return ['Kanban' => [
|
|||
'Back' => 'Zurück',
|
||||
'Date' => 'Datum',
|
||||
'Description' => 'Beschreibung',
|
||||
'Board' => 'Board',
|
||||
'Board' => 'Board',
|
||||
'Name' => 'Name',
|
||||
'Status' => 'Status',
|
||||
'Tags' => 'Stichworte',
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ return ['Kanban' => [
|
|||
'Back' => 'Back',
|
||||
'Date' => 'Date',
|
||||
'Description' => 'Description',
|
||||
'Board' => 'Board',
|
||||
'Board' => 'Board',
|
||||
'Name' => 'Name',
|
||||
'Status' => 'Status',
|
||||
'Tags' => 'Tags',
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ $columns = $board->getColumns();
|
|||
<div id="kanban-column-<?= $i; ?>" class="box col-xs-3" style="min-width: 300px;">
|
||||
<header class="simple-flex">
|
||||
<span><?= $this->printHtml($column->name); ?></span>
|
||||
<a href="<?= UriFactory::build('{/base}/kanban/card/create?{?}&id=' . $board->id) ?>"><i class="g-icon">add_circle</i></a>
|
||||
<a href="<?= UriFactory::build('{/base}/kanban/card/create?{?}&id=' . $board->id); ?>"><i class="g-icon">add_circle</i></a>
|
||||
</header>
|
||||
<?php $j = 0; foreach ($cards as $card) : $j++;
|
||||
$url = UriFactory::build('{/base}/kanban/card/view?{?}&id=' . $card->id);
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ namespace Modules\Kanban\tests\Models;
|
|||
use Modules\Kanban\Models\CardStatus;
|
||||
use Modules\Kanban\Models\CardType;
|
||||
use Modules\Kanban\Models\KanbanCard;
|
||||
use Modules\Kanban\Models\NullKanbanCardComment;
|
||||
use Modules\Tasks\Models\Task;
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user