aboutsummaryrefslogtreecommitdiffstats
path: root/gui/app/views/suite.html
blob: 8e13483334993ee4de5997be5bf0947bb8a84de9 (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<div class="content">
    <!--suitelist-->
    <i class="fa fa-arrow-left fa-1x" aria-hidden="true" style="color: #999;cursor:pointer" ng-click="goBack()">Back</i>

    <div>
        Test Suites
        <button class="btn btn-default" style="margin-left:20px;" ng-click="gotoCreateSuite()">
                                   Create

                                    </button>

        <!--<div ng-show="displayOpenrcFile!=null || displayOpenrcFile!=undefined">
            {{displayOpenrcFile.name}} last modified: {{filelastModified}}
        </div>-->
        <hr/>

        <!--<div ng-repeat="env in environmentList">
            {{env.name}}
        </div>-->
        <div dw-loading="key" dw-loading-options="{text:'loading'}">
        <div style="display:flex;flex-direction:row;justify-content:space-between;padding:8px;border-top: 1px solid #e9ecec;background-color: #f9f9f9;" >
            <div style="font-weight:600">Name</div>
            <div style="font-weight:600;margin-right:4px;">Operate</div>

        </div>


        <div dir-paginate="suite in testsuitlist | itemsPerPage: 10">
            <div style="display:flex;flex-direction:row;justify-content:space-between;padding:8px;border-top: 1px solid #e9ecec;">
                <div>
                    <a style="color:#e95420"  ng-click="gotoDetail(suite)"> {{suite}}
                    </a>
                    </div>
                <div>
                    <!-- <button class="btn btn-default btn-sm" ng-click="gotoDetail(suite)">Detail</button> -->
                    <button class="btn btn-default btn-sm" ng-click="openDeleteEnv(suite,'test suite')">Delete</button>
                </div>

            </div>

        </div>
        <center>
            <dir-pagination-controls></dir-pagination-controls>
        </center>
        </div>








    </div>




</div>

<toaster-container></toaster-container>

<style>
    .deepColor {
        background-color: #f9f9f9;
    }

    .form-control {
        border-radius: 5px;
        width: 300px;
        margin-bottom: 10px;
    }

    .uploadbutton {
        background-color: #007ACC;
        color: #fff;
        border: 0px;
        border-radius: 5px;
        height: 27px;
    }

    .edit-title {
        border: 0px;
        background-color: #ffffff;
        margin-bottom: 5px;
    }

    .null-edit-title {
        border: 1px solid #e5e6e7;
        border-radius: 5px;
        margin-bottom: 3px;
    }

    .item-info {
        display: flex;
        flex-direction: row;
    }

    .delete-img {
        width: 19px;
        height: 19px;
        opacity: 0.8;
        margin-left: 5px;
        margin-top: 4px;
        cursor: pointer;
    }

    .nextButton {
        margin-top: 30px;
        border: none;
        border-radius: 5px;
        padding: 6px;
        background-color: #339933;
        color: #ffffff;
        text-align: center;
        /* margin-left: 300px; */
    }

    .bs-sidenav {
        margin-top: 40px;
        margin-bottom: 20px;
        width: 124px;
    }

    .nav {
        margin-bottom: 0;
        padding-left: 0;
        list-style: none;
    }

    .nav>li {
        position: relative;
        display: block;
    }

    li {
        display: list-item;
        text-align: -webkit-match-parent;
    }

    a {
        cursor: pointer;
    }

    a.active {
        background-color: #EEEEEE;
        border-radius: 5px;
    }
</style>