├── lang ├── lang.json ├── index.php ├── language.en.php └── language.ru.php ├── .gitignore ├── core ├── index.php ├── functions │ ├── index.php │ ├── auth.php │ ├── global.php │ ├── language.php │ └── web.php ├── functions.php ├── data.php ├── core.php └── task.json ├── web ├── index.php ├── css │ ├── index.php │ ├── img │ │ ├── grid.png │ │ ├── rte │ │ │ ├── link.png │ │ │ ├── link_break.png │ │ │ ├── text_bold.png │ │ │ ├── picture_empty.png │ │ │ ├── text_italic.png │ │ │ ├── text_align_left.png │ │ │ ├── text_subscript.png │ │ │ ├── text_align_center.png │ │ │ ├── text_align_right.png │ │ │ ├── text_list_bullets.png │ │ │ ├── text_list_numbers.png │ │ │ ├── text_strikethrough.png │ │ │ └── text_superscript.png │ │ ├── icon-check.png │ │ ├── breadcrumbs-bg.gif │ │ ├── chosen-sprite.png │ │ ├── fancybox │ │ │ ├── blank.gif │ │ │ ├── fancybox.png │ │ │ ├── fancybox-x.png │ │ │ ├── fancybox-y.png │ │ │ ├── fancy_close.png │ │ │ ├── fancy_loading.png │ │ │ ├── fancy_nav_left.png │ │ │ ├── fancy_nav_right.png │ │ │ ├── fancy_shadow_e.png │ │ │ ├── fancy_shadow_n.png │ │ │ ├── fancy_shadow_ne.png │ │ │ ├── fancy_shadow_nw.png │ │ │ ├── fancy_shadow_s.png │ │ │ ├── fancy_shadow_se.png │ │ │ ├── fancy_shadow_sw.png │ │ │ ├── fancy_shadow_w.png │ │ │ ├── fancy_title_left.png │ │ │ ├── fancy_title_main.png │ │ │ ├── fancy_title_over.png │ │ │ ├── fancy_title_right.png │ │ │ ├── jquery.mousewheel-3.0.4.pack.js │ │ │ ├── jquery.easing-1.3.pack.js │ │ │ └── jquery.fancybox-1.3.4.pack.js │ │ └── icon-arrow-right.png │ ├── fonts │ │ ├── base │ │ │ ├── icomoon-webfont.eot │ │ │ ├── icomoon-webfont.ttf │ │ │ └── icomoon-webfont.woff │ │ └── social │ │ │ ├── icomoonsocial-webfont.eot │ │ │ ├── icomoonsocial-webfont.ttf │ │ │ └── icomoonsocial-webfont.woff │ ├── prettify.css │ ├── kickstart-grid.css │ ├── kickstart-icons.css │ ├── tiptip.css │ ├── style.css │ ├── kickstart-menus.css │ ├── jquery.fancybox-1.3.4.css │ ├── kickstart-forms.css │ ├── chosen.css │ ├── kickstart.css │ └── kickstart-buttons.css ├── js │ ├── index.php │ ├── ajax.js │ ├── html5.js │ └── prettify.js ├── table_footer.php ├── table_notasks.php ├── actions_closed.php ├── actions_deleted.php ├── info.php ├── debug.php ├── actions_open.php ├── table_head.php ├── form_login.php ├── footer.php ├── table_daystoclose.php ├── form_input.php ├── table_content.php ├── body.php ├── header.php └── form_edit.php ├── .htaccess ├── TODO.md ├── gulpfile.js ├── index.php ├── debug.php ├── README.md ├── LICENSE └── action.php /lang/lang.json: -------------------------------------------------------------------------------- 1 | {"lang":"ru"} -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | .idea/ -------------------------------------------------------------------------------- /core/index.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /core/functions.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/table_notasks.php: -------------------------------------------------------------------------------- 1 | 10 |
20 | 21 |22 |
27 | 28 |29 | -------------------------------------------------------------------------------- /web/css/prettify.css: -------------------------------------------------------------------------------- 1 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} -------------------------------------------------------------------------------- /core/data.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/actions_open.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /web/table_head.php: -------------------------------------------------------------------------------- 1 | 10 |
| 14 | 15 | | 16 |17 | 18 | | 19 |20 | 21 | | 22 |23 | 24 | | 25 |26 | 27 | | 28 |
|---|