Start on config setup tool. This tool is not yet functional.
This commit is contained in:
parent
cac19cac57
commit
1142b1bc18
19 changed files with 1336 additions and 7 deletions
12
static/directives/config/config-file-field.html
Normal file
12
static/directives/config/config-file-field.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
<div class="config-file-field-element">
|
||||
<span ng-show="uploadProgress == null">
|
||||
<span ng-if="hasFile"><strong>{{ filename }}</strong> in the mounted config directory</span>
|
||||
<span class="nofile" ng-if="!hasFile">File {{ filename }} not found in mounted config directory: </span>
|
||||
<span ng-if="!hasFile">
|
||||
<input type="file" ng-file-select="onFileSelect($files)">
|
||||
</span>
|
||||
</span>
|
||||
<span ng-show="uploadProgress != null">
|
||||
Uploading file as <strong>{{ filename }}</strong>... {{ uploadProgress }}%
|
||||
</span>
|
||||
</div>
|
Reference in a new issue