This repository has been archived on 2020-03-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
quay/static/directives/config/config-file-field.html

12 lines
540 B
HTML

<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>