diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2015-10-31 12:04:28 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2015-10-31 12:04:28 +0100 |
commit | 02d6e77bd180cbbf6f7f6e1a69c670e922d8204d (patch) | |
tree | c55847b71e589f79ce6537f2b61f3691fe8bf220 /web/static/app/templates/device-edit-attribute.modal.html | |
parent | dd72e7992f126c4a42a0791228400738072f297d (diff) | |
download | diller-server-02d6e77bd180cbbf6f7f6e1a69c670e922d8204d.tar.gz diller-server-02d6e77bd180cbbf6f7f6e1a69c670e922d8204d.tar.bz2 diller-server-02d6e77bd180cbbf6f7f6e1a69c670e922d8204d.tar.xz diller-server-02d6e77bd180cbbf6f7f6e1a69c670e922d8204d.zip |
web:
o Starting on edit button for device name.
Diffstat (limited to 'web/static/app/templates/device-edit-attribute.modal.html')
-rw-r--r-- | web/static/app/templates/device-edit-attribute.modal.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/web/static/app/templates/device-edit-attribute.modal.html b/web/static/app/templates/device-edit-attribute.modal.html new file mode 100644 index 0000000..e471e5f --- /dev/null +++ b/web/static/app/templates/device-edit-attribute.modal.html @@ -0,0 +1,13 @@ +<div class="modal-header"> + <button type="button" class="close" ng-click="$dismiss()"> + <span>×</span> + </button> + <h4 class="modal-title">Edit device {{attributeName}}</h4> +</div> +<div class="modal-body"> + <p>One fine body…</p> +</div> +<div class="modal-footer"> + <button type="button" class="btn btn-secondary" ng-click="$dismiss()">Cancel</button> + <button type="button" class="btn btn-primary" ng-click="ctrl.update()">Update</button> +</div> |