services.pug 5.72 KB
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
1
doctype html
2
html(lang="de")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
3
4
5
6
  head
    title= "User Profile"
    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://m4lab.hft-stuttgart.de/css/bootstrap.min.css")
    link(rel="stylesheet", type="text/css", href="https://m4lab.hft-stuttgart.de/css/m4lab.css")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
9
10
    link(rel="stylesheet", href="https://use.fontawesome.com/releases/v5.8.2/css/all.css", integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay", crossorigin="anonymous")
  body
11
    div(class="container")
12
        div(class="row min-vh-100 flex-column flex-md-row")
13
            aside(class="col-12 col-md-3 p-0 flex-shrink-1")
14
15
16
17
                nav(class="navbar navbar-expand flex-md-column flex-row align-items-start py-2")
                    div(class="collapse navbar-collapse")
                        ul(class="flex-md-column flex-row navbar-nav w-100 justify-content-between")
                            li(class="nav-item")
18
                                a(class="nav-link pl-0 text-nowrap" href="/")
19
20
                                    span(class="font-weight-bold" style="color:black;") #{user.firstname} #{user.lastname}
                            li(class="nav-item")
Wolfgang Knopki's avatar
Wolfgang Knopki committed
21
                                a(class="nav-link pl-0" href="/account/profile")
22
23
                                    i(class="fa fa-user fa-fw")
                                    span(class="d-none d-md-inline") Benutzerprofil
24
25
26
27
28
                            if user.m4lab_idp == 1
                                li(class="nav-item")
                                    a(class="nav-link pl-0" href="/account/security")
                                        i(class="fa fa-lock fa-fw")
                                        span(class="d-none d-md-inline") Sicherheitseinstellungen
29
                            li(class="nav-item")
Wolfgang Knopki's avatar
Wolfgang Knopki committed
30
                                a(class="nav-link pl-0" href="/account/services")
31
32
33
                                    i(class="fa fa-tasks fa-fw" style="color:black;")
                                    span(class="d-none d-md-inline" style="color:black;") Projekte und Dienste
                            li(class="nav-item")
34
                                a(class="nav-link pl-0" href="/logout" style="color:red;")
35
36
37
                                    i(class="fa fa-sign-out-alt fa-fw")
                                    span(class="d-none d-md-inline") Logout
            main(class="col bg-faded py-3 flex-grow-1")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
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
                div(class="container")
                    h3(class="pb-2") Dienste
                    div(class="col-sm-12")
                        //p Auf dieser Seite werden in Zukunft Funktionen bereitgestellt, um Ihre Beteiligung an Projekten und Aktivierung von Diensten zu organisieren. Diese Funktionen stehen zurzeit aber noch nicht zur Verfügung.
                        p Auf dieser Seite werden in Zukunft Funktionen bereitgestellt, um Ihre Aktivierung von Diensten zu organisieren. Diese Funktionen stehen zurzeit aber noch nicht zur Verfügung.
                hr
                div(class="container")
                    h3(class="pb-2") Projekte
                    div(class="col-sm-12")
                        if gitlabPages
                            div(class="container")
                                div(class="row pb-1")
                                    div(class="col font-weight-bold") Projektinformationen
                                    div(class="col text-right")
                                        a(href="/newPages" class="btn btn-sm btn-success" role="button") New Information
                            table(class="table")
                                for item in gitlabPages
                                    - var img = item.avatar_url
                                    tr
                                        td
                                            img(src=img, width="45", height="45")
                                        td #{item.name}
                                        if item.isPublished
                                            td published
                                        else
                                            td not published yet
                            div(class="container")
                                div(class="row pb-1")
                                    div(class="col font-weight-bold") Projektcode und -daten
                                    div(class="col text-right")
                                        button(type="button", class="btn btn-sm btn-success") New Code and Data
                            table(class="table")
                                for item in gitlabRepos
                                    - var img = item.avatar_url
                                    tr
                                        td
                                            img(src=img, width="45", height="45")
                                        td #{item.name}
                        else
                            p 
                                | Please <a href="https://transfer.hft-stuttgart.de/gitlab" target="_blank">login to gitlab</a> to activate your access, and then refresh this page.

Rosanny Sihombing's avatar
Rosanny Sihombing committed
80
81
82
83
84
85
    // 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")
    // M4_LAB
86
    script(src="/js/headfoot.js")