-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathnode_settings.mako
More file actions
37 lines (36 loc) · 1.27 KB
/
node_settings.mako
File metadata and controls
37 lines (36 loc) · 1.27 KB
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
<div id="${addon_short_name}Scope" class="scripted">
<h4 class="addon-title">
<img class="addon-icon" src=${addon_icon_url}>
${addon_full_name}
</h4>
<!-- Settings Pane -->
<div class="${addon_short_name}-settings">
<div class="row">
<div class="col-md-11">
<input class="form-control" data-bind="textInput: param_1" id="param_1" name="param_1" />
</div>
<!-- end col -->
<div class="col-md-1">
<div class="pull-right">
<button class="btn btn-success" data-bind="enable: dirty, click: submit">
${_("Save")}
</button>
</div>
</div>
<!-- end col -->
</div>
<!-- end row -->
<!-- admin notes template -->
<div class="row">
<div class="col-md-12" data-bind="foreach: admin_notes_list">
<!-- ko if: value && value.trim() -->
<h4><span data-bind="text: institutionLabel"></span></h4>
<p data-bind="text: value"></p>
<!-- /ko -->
</div>
<!-- end col -->
</div>
<!-- end row -->
<!-- /admin notes template -->
</div>
</div>