89 lines
3.7 KiB
Plaintext
89 lines
3.7 KiB
Plaintext
doctype html
|
|
|
|
div.wrapper(tg-backlog, ng-controller="BacklogController as ctrl",
|
|
ng-init="section='backlog'")
|
|
tg-project-menu
|
|
sidebar.menu-secondary.extrabar.filters-bar(tg-backlog-filters)
|
|
include ../includes/modules/backlog-filters
|
|
section.main.backlog
|
|
include ../includes/components/mainTitle
|
|
|
|
div.backlog-summary(tg-toggle-burndown-visibility)
|
|
include ../includes/components/summary
|
|
|
|
div.empty-burndown(ng-if="showGraphPlaceholder && project.i_am_admin")
|
|
tg-svg(svg-icon="icon-graph")
|
|
div.empty-text
|
|
p.title(translate="BACKLOG.CUSTOMIZE_GRAPH")
|
|
p {{'BACKLOG.CUSTOMIZE_GRAPH_TEXT' | translate}} #[a(href="", tg-nav="project-admin-project-profile-modules:project=project.slug", title="{{'BACKLOG.CUSTOMIZE_GRAPH_TITLE' | translate}}") {{'BACKLOG.CUSTOMIZE_GRAPH_ADMIN' | translate}}]
|
|
|
|
div.graphics-container.js-burndown-graph
|
|
div.burndown(tg-burndown-backlog-graph)
|
|
include ../includes/modules/burndown
|
|
|
|
div.backlog-menu
|
|
div.backlog-table-options
|
|
a.trans-button.move-to-current-sprint.move-to-sprint(
|
|
ng-if="currentSprint"
|
|
href=""
|
|
title="{{'BACKLOG.MOVE_US_TO_CURRENT_SPRINT' | translate}}"
|
|
id="move-to-current-sprint"
|
|
)
|
|
tg-svg(svg-icon="icon-move")
|
|
span.text(translate="BACKLOG.MOVE_US_TO_CURRENT_SPRINT")
|
|
a.trans-button.move-to-latest-sprint.move-to-sprint(
|
|
ng-if="!currentSprint"
|
|
href=""
|
|
title="{{'BACKLOG.MOVE_US_TO_LATEST_SPRINT' | translate}}"
|
|
id="move-to-latest-sprint"
|
|
)
|
|
tg-svg(svg-icon="icon-move")
|
|
span.text(translate="BACKLOG.MOVE_US_TO_LATEST_SPRINT")
|
|
a.trans-button(
|
|
ng-if="userstories.length"
|
|
href=""
|
|
title="{{'BACKLOG.FILTERS.TOGGLE' | translate}}"
|
|
id="show-filters-button"
|
|
translate="BACKLOG.FILTERS.SHOW"
|
|
)
|
|
a.trans-button(
|
|
ng-if="userstories.length"
|
|
href=""
|
|
title="{{'BACKLOG.TAGS.TOGGLE' | translate}}"
|
|
id="show-tags"
|
|
translate="BACKLOG.TAGS.SHOW"
|
|
)
|
|
include ../includes/components/addnewus
|
|
|
|
section.backlog-table(ng-class="{'hidden': !userstories.length}")
|
|
include ../includes/modules/backlog-table
|
|
|
|
div.empty-backlog(
|
|
ng-class="{'hidden': userstories === undefined || userstories.length}"
|
|
tg-backlog-empty-sortable
|
|
)
|
|
img(
|
|
src="/#{v}/images/backlog-empty.png"
|
|
alt="{{'BACKLOG.EMPTY' | translate}}"
|
|
)
|
|
p.title(translate="BACKLOG.EMPTY")
|
|
a(
|
|
href=""
|
|
title="{{'BACKLOG.CREATE_NEW_US' | translate}}"
|
|
ng-click="ctrl.addNewUs('standard')"
|
|
tg-check-permission="add_us"
|
|
translate="BACKLOG.CREATE_NEW_US_EMPTY_HELP"
|
|
)
|
|
|
|
sidebar.menu-secondary.sidebar
|
|
include ../includes/modules/sprints
|
|
|
|
div.lightbox.lightbox-generic-form.lb-create-edit-userstory(tg-lb-create-edit-userstory)
|
|
include ../includes/modules/lightbox-us-create-edit
|
|
|
|
div.lightbox.lightbox-generic-bulk(tg-lb-create-bulk-userstories)
|
|
include ../includes/modules/lightbox-us-bulk
|
|
|
|
div.lightbox.lightbox-sprint-add-edit(tg-lb-create-edit-sprint)
|
|
include ../includes/modules/lightbox-sprint-add-edit
|