1 <!-- <link rel="stylesheet" type="text/css" href="static/fusion/raptor/css/raptor.css"> -->
3 #stepView table tbody td {
7 #stepView table tbody tr {
12 .noTableBorder table tbody td {
15 .noTableBorder table tbody tr {
23 vertical-align:middle;
26 .tabs.tabs-justified > li.active, .tabs.promo-tabs > li.active {
31 <div id="page-content">
32 <h1 class="heading-page">Report Wizard</h1>
35 <!-- <h1 id="tabs---promo">Tabs - Promo</h1>
36 <button class="btn btn-secondary btn-small" ng-click="gTabs[3].disabled = !gTabs[3].disabled">{{gTabs[3].disabled?'Enable':'Disable'}}</button> - Toggle 4th (Features) Tab
38 <b2b-tabset tab-id-selected="activeTabsId">
39 <b2b-tab ng-repeat="tab in gTabs" tab-item="tab"
40 id="{{tab.uniqueId}}" aria-controls="{{tab.tabPanelId}}"
41 ng-disabled="tab.disabled">
46 <div ng-show="showLoader" class="span loader-container">
47 <i class="icon-primary-spinner" role="img"
48 aria-label="Please wait while we load your content"></i>
51 <div ng-hide="showLoader">
53 <!-- <select ng-model="prj"
54 ng-options="item.projectName for item in allProjects track by item.id" data-ng-init="getAllProjects()"
55 ng-change="selectAction();">
56 <option value="">Select project</option>
59 <a ng-click="createAction()" class="pointer">Create Project</a> -->
61 <input type="hidden" name="project_id" ng-model="project_id" value = ""/>
63 <div id="stepViewColumn" ng-show = "isColumnStep">
64 <h1>Step 3 : Columns</h1>
65 <table class="striped">
75 <tr ng-repeat = "rowData in colTableRowData">
77 <td>{{rowData.name}}</td>
78 <td>{{rowData.id}}</td>
79 <td><a ng-click="openColumnPopup(rowData)" class="icon-misc-pen"></a></td>
85 <div id="stepViewFormField" ng-show = "isFormFieldStep">
86 <h1>Step 4 : Form Fields</h1>
87 <table class="striped">
97 <tr ng-repeat = "rowData in formFieldData">
99 <td>{{rowData.name}}[{{rowData.id}}]</td>
100 <td><a ng-click="openFormFieldPopup(rowData)" class="icon-misc-pen"></a></td>
101 <td><a ng-click="deleteFormField(rowData)" class="icon-misc-trash"></a></td>
107 <div id="stepViewSecurity" ng-show = "isSecurityStep">
108 <h1>Step 5 : Report Security</h1>
109 <div class="noTableBorder">
110 <table class="striped">
113 <td>Created By: {{reportSecurityInfo.createdUser}}</td>
114 <td>Created Date: {{reportSecurityInfo.createdDate}}</td>
117 <td>Last Updated By: {{reportSecurityInfo.updateUser}}</td>
118 <td>Last Updated: {{reportSecurityInfo.updatedDate}}</td>
124 <select name="reportOwner" b2b-dropdown ng-model="reportOwnerId.id">
125 <option b2b-dropdown-list option-repeat="d in reportOwnerList" value="{{d.id}}">{{d.name}}</option>
130 Public? (All users can run the report):
131 <select name="isPublic" b2b-dropdown ng-model="reportSecurityInfo.isPublic">
132 <option b2b-dropdown-list option-repeat="d in isPublicOptionList" value="{{d.value}}">{{d.text}}</option>
140 <div style="margin-top:20px;">
141 <h1 style="margin-bottom:5px;">Report Users</h1>
142 <table class="striped">
145 <th width="10%">No</th>
146 <th width="45%">User Name</th>
147 <th width="15%">Run Access</th>
148 <th width="15%">Edit Access</th>
149 <th width="15%">Remove</th>
153 <tr ng-repeat = "reportUser in reportSecurityUsers">
154 <td>{{$index+1}}</td>
155 <td>{{reportUser.name}}</td>
157 <label for="switch{{$index+1}}runAccess" class="btn-switch-label">
158 <input type="checkbox" role="switch" id="switch{{$index+1}}runAccess" b2b-switches ng-model=true ng-disabled=true aria-disabled=true aria-label="">
162 <label for="switch{{$index+1}}" class="btn-switch-label">
163 <input type="checkbox" role="switch" id="switch{{$index+1}}" b2b-switches ng-model="reportUser.accessAllowed" ng-click="toggleUserEditAccessActive(reportUser)" ng-disabled=false aria-disabled=false aria-label="">
167 <a class="icon-misc-trash" style="font-size: 22px;" ng-click="removeReportSecurityUser(reportUser)"> </a>
176 <select name="reportUser" b2b-dropdown ng-model="addReportUserId.id" placeholder-text="Select a User">
177 <option b2b-dropdown-list option-repeat="d in reportOwnerList" value="{{d.id}}">{{d.name}}</option>
181 <button class="btn btn-alt btn-small" type="button" ng-click="addReportSecurityUser(addReportUserId.id)">Add</button>
189 <div style="margin-top:20px;">
190 <h1>Report Roles</h1>
191 <table class="striped">
194 <th width="10%">No</th>
195 <th width="45%">Role Name</th>
196 <th width="15%">Run Access</th>
197 <th width="15%">Edit Access</th>
198 <th width="15%">Remove</th>
202 <tr ng-repeat = "reportRole in reportSecurityRoles">
203 <td>{{$index+1}}</td>
204 <td>{{reportRole.name}}</td>
206 <label for="switch{{$index+1}}RoleRunAccess" class="btn-switch-label">
207 <input type="checkbox" role="switch" id="switch{{$index+1}}RoleRunAccess" b2b-switches ng-model=true ng-disabled=true aria-disabled=true aria-label="">
211 <label for="switch{{$index+1}}RoleEditAccess" class="btn-switch-label">
212 <input type="checkbox" role="switch" id="switch{{$index+1}}RoleEditAccess" b2b-switches ng-model="reportRole.accessAllowed" ng-click="toggleRoleEditAccessActive(reportRole)" ng-disabled=false aria-disabled=false aria-label="">
216 <a class="icon-misc-trash" ng-click="removeReportSecurityRole(reportRole)" style="font-size: 22px;"> </a>
225 <select name="reportOwner" b2b-dropdown ng-model="addReportRoleId.id" placeholder-text="Select a Role">
226 <option b2b-dropdown-list option-repeat="d in reportRoleList" value="{{d.id}}">{{d.name}}</option>
230 <button class="btn btn-alt btn-small" type="button" ng-click="addReportSecurityRole(addReportRoleId.id)">Add</button>