mirror of
https://github.com/Karaka-Management/oms-Kanban.git
synced 2026-02-18 13:18:41 +00:00
impl. todos or move to Project.md
This commit is contained in:
parent
7e4bcee87b
commit
3472123d75
|
|
@ -12,14 +12,7 @@ If you have a good idea for improvement feel free to create a new issue with all
|
||||||
|
|
||||||
### Issues
|
### Issues
|
||||||
|
|
||||||
Feel free to grab any open issue implement it and create a new pull request. Most issues can be found in the code and have the following structure:
|
Feel free to grab any open issue implement it and create a new pull request. Most issues can be found in the `Project.md` file in the `Docs` repository.
|
||||||
|
|
||||||
```php
|
|
||||||
/**
|
|
||||||
* @todo Orange-Management/Orange-Management#ISSUE_NUMBER [d:difficulty]
|
|
||||||
* Description for the issue
|
|
||||||
*/
|
|
||||||
```
|
|
||||||
|
|
||||||
The issue information can be used to provide additional information such as priority, difficulty and type. For your first issue try to find a issue marked `[d:first]` or `[d:beginner]`.
|
The issue information can be used to provide additional information such as priority, difficulty and type. For your first issue try to find a issue marked `[d:first]` or `[d:beginner]`.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,14 +18,9 @@ $board = $this->getData('board');
|
||||||
/** @var \Modules\Kanban\Models\KanbanColumn[] $columns */
|
/** @var \Modules\Kanban\Models\KanbanColumn[] $columns */
|
||||||
$columns = $board->getColumns();
|
$columns = $board->getColumns();
|
||||||
?>
|
?>
|
||||||
<!--
|
|
||||||
@todo Orange-Management/Modules#197
|
|
||||||
Columns width should be in % but with min-width and on smaller screens full width
|
|
||||||
The amount of columns depends on the user settings
|
|
||||||
-->
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<?php $i = 0; foreach ($columns as $column) : $i++; $cards = $column->getCards(); ?>
|
<?php $i = 0; foreach ($columns as $column) : $i++; $cards = $column->getCards(); ?>
|
||||||
<div id="kanban-column-<?= $i; ?>" class="col-xs-12 col-sm-3 box kanban-column" draggable="true">
|
<div id="kanban-column-<?= $i; ?>" class="col-xs-12 col-md-6 col-lg-3 box kanban-column" draggable="true">
|
||||||
<header><?= $this->printHtml($column->name); ?></header>
|
<header><?= $this->printHtml($column->name); ?></header>
|
||||||
<?php $j = 0; foreach ($cards as $card) : $j++;
|
<?php $j = 0; foreach ($cards as $card) : $j++;
|
||||||
$url = \phpOMS\Uri\UriFactory::build('{/prefix}kanban/card?{?}&id=' . $card->getId());
|
$url = \phpOMS\Uri\UriFactory::build('{/prefix}kanban/card?{?}&id=' . $card->getId());
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user