duplicati/Duplicati/Server/webroot/ngax/templates/backends/rclone.html
Kenneth Skovhede faa210df63 Updated rclone backend to handle empty options the same as missing options (apply default values).
Made the local repo optional in the UI because it has a default value.
2024-11-01 09:02:40 +01:00

13 lines
967 B
HTML

<div class="input text">
<label for="rclone_local_repository" translate>Local repository</label>
<input type="text" name="rclone_local_repository" id="rclone_local_repository" ng-model="$parent.rclone_local_repository" placeholder="{{'local repository, leave empty for local' | translate}}" />
</div>
<div class="input text">
<label for="rclone_remote_repository" translate>Remote repository</label>
<input type="text" name="rclone_remote_repository" id="rclone_remote-repository" ng-model="$parent.Server" placeholder="{{'remote repository, e.g. remote' | translate}}" />
</div>
<div class="input text">
<label for="rclone_remote_path" translate>Remote path</label>
<input type="text" name="rclone_remote_path" id="rclone_remote_path" ng-model="$parent.Path" placeholder="{{'remote path, e.g. backup' | translate}}" />
</div>
<div translate>Make sure that rclone is in your path, or add the location to rclone via the advanced options.</div>