taiga-front/app/modules/home/home.jade

23 lines
850 B
Plaintext

doctype html
include ../../partials/includes/components/beta
div.home-wrapper.centered
div.duty-summary
// TODO: if not assigned to items?
// TODO: i18n
div.title-bar.working-on-title(ng-show="vm.assignedTo") Working on
section.working-on(ng-show="vm.assignedTo")
div.duty-single(tg-duty="duty", tg-repeat="duty in vm.assignedTo", ng-class="{blocked: duty.is_blocked}")
div.title-bar.watching-title Watching
section.watching-empty(ng-show="!vm.watching.size")
include ../../svg/hide.svg
// TODO: i18n
p(translate="HOME.EMPTY_WATCHING")
section.watching(ng-show="vm.watching")
div.duty-single(tg-duty="duty", tg-repeat="duty in vm.watching", ng-class="{blocked: duty.is_blocked}")
aside.project-list(tg-home-project-list)