Skip to content
Snippets Groups Projects
Select Git revision
  • f6d5323028e11e53755b68edb17d23bd1163f342
  • master default protected
2 results

NavPage.pug

Blame
  • NavPage.pug 638 B
    html
        body
    
            table
                th
                    td Identifiant de la tache
                    td Nom
                    td Description
                    td Action
            
                each task in list
                    tr
                        td #{ task.id }
                        td #{ task.item.name }
                        td #{ task.item.description }
                        td
                            a(href=`/task/display/${ task.id }`) Afficher
                            a(href=`/task/edit/${ task.id }`) Editer
                            a(href=`/task/delete/${ task.id }`) Supprimer
    
            a( href="/task/new" ) Crée une nouvelle tâche