Add latest changes
Dieser Commit ist enthalten in:
@@ -65,6 +65,22 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-md-6">
|
||||
<label for="concurrentSessions" class="form-label">Max. gleichzeitige Sessions</label>
|
||||
<select class="form-select" id="concurrentSessions" name="max_concurrent_sessions" required>
|
||||
{% set device_limit = license.get('device_limit', 3) %}
|
||||
{% set upper_limit = device_limit + 1 if device_limit < 11 else 11 %}
|
||||
{% for i in range(1, upper_limit) %}
|
||||
<option value="{{ i }}" {% if license.get('max_concurrent_sessions', 1) == i %}selected{% endif %}>
|
||||
{{ i }} {% if i == 1 %}Session{% else %}Sessions{% endif %}
|
||||
</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
<small class="form-text text-muted">Wie viele Geräte können gleichzeitig online sein</small>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="alert {% if license.is_fake %}alert-warning{% else %}alert-success{% endif %} mt-3" role="alert">
|
||||
<i class="fas fa-info-circle"></i>
|
||||
<strong>Status:</strong>
|
||||
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren