mirror of
https://github.com/Karaka-Management/oms-Kanban.git
synced 2026-02-16 12:18:40 +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)
|
->where('tags/title/language', $request->header->l11n->language)
|
||||||
->sort('createdAt', OrderType::DESC)
|
->sort('createdAt', OrderType::DESC)
|
||||||
->limit(20)
|
->limit(20)
|
||||||
->execute();
|
->executeGetArray();
|
||||||
|
|
||||||
$view->data['boards'] = $list;
|
$view->data['boards'] = $list;
|
||||||
|
|
||||||
|
|
@ -162,7 +162,7 @@ final class BackendController extends Controller
|
||||||
->where('tags/title/language', $request->header->l11n->language)
|
->where('tags/title/language', $request->header->l11n->language)
|
||||||
->sort('createdAt', OrderType::DESC)
|
->sort('createdAt', OrderType::DESC)
|
||||||
->limit(25)
|
->limit(25)
|
||||||
->execute();
|
->executeGetArray();
|
||||||
|
|
||||||
$view->data['boards'] = $list;
|
$view->data['boards'] = $list;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,7 @@ final class SearchController extends Controller
|
||||||
->where('tags/title/language', $response->header->l11n->language)
|
->where('tags/title/language', $response->header->l11n->language)
|
||||||
->sort('createdAt', OrderType::DESC)
|
->sort('createdAt', OrderType::DESC)
|
||||||
->limit(8)
|
->limit(8)
|
||||||
->execute();
|
->executeGetArray();
|
||||||
|
|
||||||
$results = [];
|
$results = [];
|
||||||
foreach ($docs as $doc) {
|
foreach ($docs as $doc) {
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ return ['Kanban' => [
|
||||||
'Back' => 'Zurück',
|
'Back' => 'Zurück',
|
||||||
'Date' => 'Datum',
|
'Date' => 'Datum',
|
||||||
'Description' => 'Beschreibung',
|
'Description' => 'Beschreibung',
|
||||||
'Board' => 'Board',
|
'Board' => 'Board',
|
||||||
'Name' => 'Name',
|
'Name' => 'Name',
|
||||||
'Status' => 'Status',
|
'Status' => 'Status',
|
||||||
'Tags' => 'Stichworte',
|
'Tags' => 'Stichworte',
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ return ['Kanban' => [
|
||||||
'Back' => 'Back',
|
'Back' => 'Back',
|
||||||
'Date' => 'Date',
|
'Date' => 'Date',
|
||||||
'Description' => 'Description',
|
'Description' => 'Description',
|
||||||
'Board' => 'Board',
|
'Board' => 'Board',
|
||||||
'Name' => 'Name',
|
'Name' => 'Name',
|
||||||
'Status' => 'Status',
|
'Status' => 'Status',
|
||||||
'Tags' => 'Tags',
|
'Tags' => 'Tags',
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ $columns = $board->getColumns();
|
||||||
<div id="kanban-column-<?= $i; ?>" class="box col-xs-3" style="min-width: 300px;">
|
<div id="kanban-column-<?= $i; ?>" class="box col-xs-3" style="min-width: 300px;">
|
||||||
<header class="simple-flex">
|
<header class="simple-flex">
|
||||||
<span><?= $this->printHtml($column->name); ?></span>
|
<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>
|
</header>
|
||||||
<?php $j = 0; foreach ($cards as $card) : $j++;
|
<?php $j = 0; foreach ($cards as $card) : $j++;
|
||||||
$url = UriFactory::build('{/base}/kanban/card/view?{?}&id=' . $card->id);
|
$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\CardStatus;
|
||||||
use Modules\Kanban\Models\CardType;
|
use Modules\Kanban\Models\CardType;
|
||||||
use Modules\Kanban\Models\KanbanCard;
|
use Modules\Kanban\Models\KanbanCard;
|
||||||
use Modules\Kanban\Models\NullKanbanCardComment;
|
|
||||||
use Modules\Tasks\Models\Task;
|
use Modules\Tasks\Models\Task;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user