taiga-front/app/partials/projects.jade

26 lines
1.1 KiB
Plaintext

extends dummy-layout
block head
title Taiga Project management web application with scrum in mind!
block content
div.home-projects-list(ng-controller="ProjectsController as ctrl")
.home-projects-wrapper
.home-projects-list-inner
div.recent-projects
ul
li(ng-repeat="project in ctrl.projects.recents", tg-nav="project:project=project.slug")
.project-content
h2(tg-bo-bind="project.name")
p(tg-bo-bind="project.description")
div.all-projects
h1 Projects
div(tg-projects-pagination, active="ctrl.projects.all.length")
ul
li(ng-repeat="project in ctrl.projects.all")
a.button(href="", tg-bo-bind="project.name", tg-nav="project:project=project.slug")
.create-project-button-wrapper
a.button.button-green(href="", ng-click="ctrl.newProject()") Create project