projects.pug 4.89 KB
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
1
2
3
4
5
6
doctype html
html(lang="de")
  head
    title= "Project List"
    meta(charset="UTF-8")
    meta(name="viewport", content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
7
8
    link(rel="stylesheet", type="text/css", href="https://transfer.hft-stuttgart.de/css/bootstrap.min.css")
    link(rel="stylesheet", type="text/css", href="https://transfer.hft-stuttgart.de/css/m4lab.css")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
9
    link(rel="stylesheet", href="https://use.fontawesome.com/releases/v5.8.2/css/all.css", integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay", crossorigin="anonymous")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
10

Rosanny Sihombing's avatar
Rosanny Sihombing committed
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
  body
    div(class="container-fluid")
        if isUserAuthenticated
            p Auf dieser Seite sehen Sie die Liste der über dieses Portal veröffentlichten Projekte.
            a(href="/addprojectoverview" class="btn btn-primary" role="button" aria-pressed="true") Projekt anlegen
        else
            p Auf dieser Seite sehen Sie die Liste der über dieses Portal veröffentlichten Projekte.
            p Möchten Sie ein neues Projekt anlegen, dann klicken Sie bitte auf #[a(href="/addprojectoverview") Anmelden und Projekt anlegen]
        if successes
            for success in successes
                div.alert.alert-success.alert-dismissible #{ success }
                    a(class="close", href="#", data-dismiss="alert", aria-label="close") ×
        // Active projects
        h3(class="mb-3 font-weight-bold") Aktive Projekte
        table(class="table table-striped")
            thead
                tr
                    th Logo
                    th Akronym
                    th Title
                    th Kernziel
                    th Kategorie
                    th Ansprechpartner
                    th Projektinhalte
            tbody
                for item in active
                    tr
                        //td #{item.status}
                        td
                            img(src=item.logo, width="40", height="40")
                        td #{item.akronym}
                        td #{item.title}
                        td #{item.summary}
                        td #{item.category}
                        td #[a(class="nav-link", href="mailto:"+ item.cp) #{item.cp}]
                        td #[a(class="nav-link", href="https://m4lab.hft-stuttgart.de/projectoverview?projectID="+item.id) Zur Projektübersicht]
                            if item.gitlab
                                a(class="nav-link", href="https://transfer.hft-stuttgart.de/gitlab/"+item.gitlab+"/tree/master") Projektdateien
                                a(class="nav-link", href="https://transfer.hft-stuttgart.de/gitlab/"+item.gitlab+"/wikis/home") Projektwiki
                            else
                                a(class="nav-link", href="#") Projektdateien
                                a(class="nav-link", href="#") Projektwiki
        br
        // Non-active projects
        h3(class="mb-3 font-weight-bold") Abgeschlossene Projekte
        table(class="table table-striped")
            thead
                tr
                    th Logo
                    th Akronym
                    th Title
                    th Kernziel
                    th Kategorie
                    th Ansprechpartner
                    th Projektinhalte
            tbody
                for item in nonActive
                    tr
                        //td #{item.status}
                        td
                            img(src=item.logo, width="40", height="40")
                        td #{item.akronym}
                        td #{item.title}
                        td #{item.summary}
                        td #{item.category}
                        td #[a(class="nav-link", href="mailto:"+ item.cp) #{item.cp}]
                        td #[a(class="nav-link", href="https://m4lab.hft-stuttgart.de/projectoverview?projectID="+item.id) Zur Projektübersicht]
                            if item.gitlab
                                a(class="nav-link", href="https://transfer.hft-stuttgart.de/gitlab/"+item.gitlab+"/tree/master") Projektdateien
                                a(class="nav-link", href="https://transfer.hft-stuttgart.de/gitlab/"+item.gitlab+"/wikis/home") Projektwiki
                            else
                                a(class="nav-link", href="#") Projektdateien
                                a(class="nav-link", href="#") Projektwiki
Rosanny Sihombing's avatar
Rosanny Sihombing committed
84
85
86
87
88
89
90

    // jQuery
    script(src="https://code.jquery.com/jquery-3.3.1.min.js")
    script(src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js", integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1", crossorigin="anonymous")
    // Bootstrap
    script(src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous")
    // Header
Wolfgang Knopki's avatar
Wolfgang Knopki committed
91
    script(src="/js/headfoot.js")