📹 Axis Camera Timelapse Manager
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
Add New Camera
📷 Cameras
| Name |
IP Address |
Port |
Username |
Actions |
{% for camera in cameras %}
| {{ camera.name }} |
{{ camera.ip }} |
{{ camera.port }} |
{{ camera.username }} |
|
|
|
{% endfor %}
🎬 Recordings
| Camera |
Started |
Duration |
Scheduled Stop |
Status |
Actions |
{% for recording in recordings %}
| {{ recording.camera_name }} ({{ recording.camera_ip }}) |
{{ recording.created_at }} |
{{ recording.duration_minutes }} min |
{{ recording.scheduled_stop or 'N/A' }} |
{{ recording.status }}
|
{% if recording.status == 'recording' %}
{% endif %}
{% if recording.status == 'completed' and recording.file_path %}
⬇ Download
{% endif %}
|
{% endfor %}