aboutsummaryrefslogtreecommitdiffstats
path: root/dcae_dmaapbc_webapp/dbca-overlay/src/main/webapp/app/dbcapp/datarouter/dr_feed_pub_sub_list_popup_template.html
diff options
context:
space:
mode:
authorChristopher Lott (cl778h) <clott@research.att.com>2017-05-09 14:24:20 -0400
committerChristopher Lott (cl778h) <clott@research.att.com>2017-05-09 14:44:09 -0400
commite2aefda183de4f1c1256d97f7ce09f8bee5477db (patch)
tree4b0eaf3f153df90591711daf081e63a8b20ace74 /dcae_dmaapbc_webapp/dbca-overlay/src/main/webapp/app/dbcapp/datarouter/dr_feed_pub_sub_list_popup_template.html
parent472635713b7471b300a988db7e907bab0119eaee (diff)
[ONAP-rebase] Rebase as 1.1.0-SNAPSHOT
Consolidate into a single maven project; no more separate model and client jars. Change-Id: Ibbba982250b74c0dfd09ee1c65c0fb6c158dd632 Signed-off-by: Christopher Lott <cl778h@att.com> Signed-off-by: Christopher Lott (cl778h) <clott@research.att.com>
Diffstat (limited to 'dcae_dmaapbc_webapp/dbca-overlay/src/main/webapp/app/dbcapp/datarouter/dr_feed_pub_sub_list_popup_template.html')
-rw-r--r--dcae_dmaapbc_webapp/dbca-overlay/src/main/webapp/app/dbcapp/datarouter/dr_feed_pub_sub_list_popup_template.html88
1 files changed, 88 insertions, 0 deletions
diff --git a/dcae_dmaapbc_webapp/dbca-overlay/src/main/webapp/app/dbcapp/datarouter/dr_feed_pub_sub_list_popup_template.html b/dcae_dmaapbc_webapp/dbca-overlay/src/main/webapp/app/dbcapp/datarouter/dr_feed_pub_sub_list_popup_template.html
new file mode 100644
index 0000000..091c751
--- /dev/null
+++ b/dcae_dmaapbc_webapp/dbca-overlay/src/main/webapp/app/dbcapp/datarouter/dr_feed_pub_sub_list_popup_template.html
@@ -0,0 +1,88 @@
+<script type="text/ng-template" id="feed_pub_sub_list_popup.html">
+
+ <div class="b2b-modal-header ng-scope">
+ <h2 id="myModalLabel" modal-title="">{{dbcapp.label}}</h2>
+ <div class="corner-button in">
+ <button type="button" class="close" aria-label="Close"
+ ng-click="$dismiss('cancel')"></button>
+ </div>
+ </div>
+
+ <div class="b2b-modal-body ng-scope ng-isolate-scope" tabindex="0"
+ role="region" aria-label="Modal body content">
+
+ <h4>Publishers</h4>
+
+ <table
+ id="pubs-table"
+ table-data="dbcapp.showFeed.pubs"
+ current-page="dbcapp.currentPageIgnored"
+ next-sort="dbcapp.nextSortIgnored">
+
+ <thead type="header">
+ <tr>
+ <th sortable="false" key="pubId">Pub ID</th>
+ <th sortable="false" key="dcaeLocationName">DCAE Location Name</th>
+ <th sortable="false" key="status">Status</th>
+ <th sortable="false" key="username">User Name</th>
+ </tr>
+ </thead>
+ <tbody type="body" ng-repeat="rowData in dbcapp.showFeed.pubs">
+ <tr>
+ <td ng-bind="rowData.pubId"/>
+ <td ng-bind="rowData.dcaeLocationName"/>
+ <td ng-bind="rowData.status"/>
+ <td ng-bind="rowData.username"
+ ng-click="dbcapp.editPubModalPopup(rowData)"/>
+ </tr>
+ </tbody>
+ </table>
+
+ <h4>Subscribers</h4>
+
+ <table
+ id="subs-table"
+ table-data="dbcapp.showFeed.subs"
+ current-page="dbcapp.currentPageIgnored"
+ next-sort="dbcapp.nextSortIgnored">
+
+ <thead type="header">
+ <tr>
+ <th sortable="false">Sub ID</th>
+ <th sortable="false">DCAE Location Name</th>
+ <th sortable="false">Delivery URL</th>
+ <th sortable="false">Log URL</th>
+ <th sortable="false">Owner</th>
+ <th sortable="false">Status</th>
+ <th sortable="false">Susp</th>
+ <th sortable="false">User Name</th>
+ </tr>
+ </thead>
+ <tbody type="body" ng-repeat="rowData in dbcapp.showFeed.subs">
+ <tr>
+ <td ng-bind="rowData.subId"/>
+ <td ng-bind="rowData.dcaeLocationName"/>
+ <td ng-bind="rowData.deliveryURL"/>
+ <td ng-bind="rowData.logURL"/>
+ <td ng-bind="rowData.owner"/>
+ <td ng-bind="rowData.status"/>
+ <td>
+ {{rowData.suspended | dbcYesNoFilter}}
+ </td>
+ <td ng-bind="rowData.username"/>
+ </tr>
+ </tbody>
+ </table>
+
+ </div>
+
+ <div class="b2b-modal-footer ng-scope ng-isolate-scope">
+ <div class="cta-button-group in">
+ <button class="btn btn-alt btn-small" type="button"
+ ng-click="$dismiss('cancel')">
+ Close
+ </button>
+ </div>
+ </div>
+
+</script>