Last active
February 15, 2022 07:11
-
-
Save mikeananev/5fc6faf74f78516859ae0ca985b16771 to your computer and use it in GitHub Desktop.
Template for Clojure Gantt See: https://github.com/redstarssystems/gantt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
:scale "900*1200" ;; размер картинки | |
:project-title "Бэклог на эпик или проект" ;; Название эпика или проекта | |
:project-header "План на 15-02-2022" ;; Дата обновления плана | |
:project-scale-zoom {:scale :daily :zoom 1} | |
:tasks-colors {:color/in-progress "GreenYellow/Red" ;; цвета задач | |
:color/completed "GreenYellow/Green"} | |
:project-content [ | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
{:separator "Бэклог"} | |
{:task "Задача 1" | |
:alias :t1 | |
:days-lasts 20 | |
:percent-complete 50} | |
{:task "Задача 2" | |
:alias :t2 | |
:days-lasts 20 | |
:percent-complete 0} | |
{:task "Задача 3" | |
:alias :t3 | |
:days-lasts 20 | |
:percent-complete 0} | |
{:separator "Цели"} | |
{:task "1. Наименование цели 1" | |
:alias :g1 | |
:days-lasts 2 | |
:color "#AAF" | |
:percent-complete 100} | |
{:task "2. Наименование цели 2" | |
:alias :g2 | |
:days-lasts 2 | |
:color "#AAF" | |
:percent-complete 100} | |
] | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment