OWL ITS + 탐지시스템(인터넷 진흥원)
이민희
2022-01-13 4545664bbece1b1b185945376b344b1660669a53
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
<link href="/assets/font/dripicons/webfont.css" rel="stylesheet">
<div class="top-bar color-scheme-light" owl-profile-over>
    <div class="top-menu-controls row">
        <div class="top-left col-lg-7">
            <h3>
                <span class="badge badge-primary vertical-middle">PROJECT</span> {{$root.workProject.name}}
            </h3>
            <select name="currentProject"
                    tabindex="-1"
                    class="form-control rounded mr-10 title-select width-20-p"
                    ng-model="$root.user.lastProjectId"
                    ng-change="fn.changeLastProject($root.user.lastProjectId)"
                    ng-if="$root.projects.length > 0">
                <option ng-repeat="workproject in $root.projects" ng-value="workproject.id">
                    {{::workproject.customName}}
                </option>
            </select>
            <select name="emptyProject"
                    tabindex="-1"
                    class="form-control rounded mr-10"
                    ng-if="$root.projects.length <= 0">
                <option translate="common.projectNone">
                    선택된 프로젝트 없음
                </option>
 
            </select>
        </div>
        <div class="top-right col-lg-5">
            <div class="input-group">
                <input class="form-control"
                       type="text"
                       tabindex="-2"
                       maxlength="300"
                       kr-input
                       owl-auto-focus
                       ng-model="vm.searchAll.keyWord"
                       placeholder="{{'issue.pleaseEnterIssueKeyWord' | translate}}"
                       ng-enter="fn.searchAll(0)">
                <div class="input-group-prepend ml-10">
                    <button class="btn btn-navy" ng-click="fn.searchAll(0)"> <span translate="common.search">검색</span></button>
                </div>
            </div>
 
 
            <!-- 전체 프로젝트 일때 이슈 만들기 버튼 숨김 -->
            <button class="btn btn-xlg btn-primary btn-rounded mr-10 ml-3" ng-if="$root.workProject.id > -1 && !$root.allIssueList" ng-click="fn.addIssue()" tabindex="-1">
                <i class="os-icon os-icon-plus"></i> <span translate="issue.createIssue">이슈 만들기</span>
            </button>
 
            <!--<div class="element-search autosuggest-search-activator" title="검색">
                <input type="text">
            </div>-->
            <!--
            <div class="messages-notifications cursor">
                <div ng-click="fn.invite()" title="사용자 초대">
                    <i class="os-icon os-icon-user-plus"></i>
                </div>
            </div>
            -->
            <div class="messages-notifications os-dropdown-trigger os-dropdown-position-left" ui-sref="notices.list"
                 style="padding-top:5px;">
<!--                <span class="new-messages-push"></span>-->
                <i class="dripicons-broadcast"></i>
            </div>
 
            <!--
            <select name="currentWorkspace"
                    tabindex="-1"
                    class="form-control form-control-sm rounded mr-10"
                    ng-model="$root.user.lastWorkspaceId"
                    ng-change="fn.changeLastWorkspace($root.user.lastWorkspaceId)">
                <option ng-repeat="workspace in $root.workspaces" ng-value="workspace.id">
                    {{::workspace.name}}
                </option>
            </select>
            -->
 
 
<!--            <select class="form-control rounded width-80-p"
                    ng-model="$root.language"
                    tabindex="-1"
                    ng-change="$root.changeLocale($root.language)">
                <option value="ko" translate="common.korean">
                    한국어
                </option>
                <option value="en" translate="common.english">
                    영어
                </option>
                <option value="ja" translate="common.japaneseLanguage">
                    일본어
                </option>
                <option value="vi" translate="common.vietnamese">
                    베트남어
                </option>
            </select>-->
        </div>
    </div>
</div>