Skip to content
Snippets Groups Projects
dashboard.pug 1.41 KiB
Newer Older
// Mentor dashboard, containing
// 3 tabs:
//  - History of my validated resources
//  - Resources validation request
//  - 
// Access to all resources
// Capabilities to request a resource
// Like and comment

header#header(role='banner')
    include ./components/header.pug

section#home
    #mentor-resource-list(hidden).no-sidebar.container
        include resources/list.pug
Benoit Alessandroni's avatar
Benoit Alessandroni committed
    #mentor-resource-create(hidden).no-sidebar.container
        sib-link(class="backlink", next="mentor-resource-list") Back to the dashboard
        include resources/create.pug

    #mentor-resource-edit(hidden).no-sidebar.container
        sib-link(class="backlink", next="mentor-resource-detail") Back to the resource
        include resources/edit.pug

    #mentor-resource-validate(hidden).no-sidebar
        sib-link(class="backlink", next="mentor-resource-list") Back to the dashboard
        include resources/validate.pug
    
    #resource-creation-confirmation(hidden).no-sidebar.container
        include resources/confirmation.pug
    
    #mentor-resource-detail(hidden).no-sidebar.container
        sib-link(class="backlink", next="mentor-resource-list") Back to the dashboard
        include resources/detail.pug

    #mentor-database
        sib-link(class="backlink", next="mentor-resource-list") Back to the dashboard
        include ../entrepreneur/dashboard.pug

    #mentor-account(hidden).no-sidebar.container
        include profile.pug