13 lines
522 B
HTML
13 lines
522 B
HTML
{% extends phone_or_desktop %}
|
|
{% load my_filters %}
|
|
{% block title %}RustDesk WebUI{% endblock %}
|
|
{% block legend_name %}{{ "Client Generator" | translate }}{% endblock %}
|
|
{% block content %}
|
|
Please wait...This can take 20-30 minutes (or longer if there are other users).<br><br>
|
|
Status: {{status}}
|
|
<script>
|
|
setTimeout(function() {
|
|
window.location.replace('/api/check_for_file?filename={{filename}}&uuid={{uuid}}&platform={{platform}}');
|
|
}, 5000); // 5000 milliseconds = 5 seconds
|
|
</script>
|
|
{% endblock %} |