summaryrefslogtreecommitdiff
blob: 265ac2f8c61308f959db9969f9e890e386041620 (plain)
1
2
3
4
5
6
7
8
9
10
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
84
85
<!DOCTYPE html>
<html lang="en">
{{template "head"}}
<body>
{{template "header" .}}

<style>

    .colvis-btn {
        background: white !important;
        border: 1px solid #ced4da;
        color: #495057;
    }

    .colvis-btn:hover {
        background: white !important;
        border: 1px solid #ced4da;
        color: #495057;
    }

    .dt-button-collection > .dropdown-menu {
        background: #54487A;
    }

    .buttons-columnVisibility:not(.active) {
        background: white!important;
        color: black!important;
    }

    td:hover {
        cursor: pointer;
    }

    tr:not(.even):not(.odd), tr[role=row]:not(.even):not(.odd){
        background: none!important;
    }

    .collapsing {
        transition: none !important;
    }


</style>


<div class="container mb-5">
    <div class="row">
        <div class="col-12">

            <table id="table_id" class="data-table table table-striped table-hover">
                <thead>
                <tr>
                    <th class="render-bold noVis">ID</th>
                    <th class="no-sort">Description</th>
                    <th class="hide no-sort">Packages</th>
                    <th class="hide no-sort render-bug">Bugs</th>
                    <th class="no-sort">BaseScore</th>
                    <th class="hide no-sort">Impact</th>
                    <th class="hide no-sort">References</th>
                    <th class="hide no-sort">Comments</th>
                    <th>LastModifiedDate</th>
                    <th class="hide">PublishedDate</th>
                    <th class="render-state">State</th>
                    <th class="hide noVis">Changelog</th>
                </tr>
                </thead>
            </table>

        </div>
    </div>
</div>

{{template "footer" .}}


<script>
    window.userCanComment = "{{.User.Permissions.CVETool.Comment}}" == "true";
    window.userCanChangeState = "{{.User.Permissions.CVETool.ChangeState}}" == "true";
    window.userCanAssignBug = "{{.User.Permissions.CVETool.AssignBug}}" == "true";
    window.userCanAddPackage = "{{.User.Permissions.CVETool.AddPackage}}" == "true";
</script>


</body>
</html>