{% extends "base.html" %} {% block title %}Anfrage-Status - Mercedes-Benz MYP Platform{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

Anfrage-Status

Status Ihrer Gastanfrage für 3D-Druck

{% if request.status == 'pending' %}
Wird geprüft
{% elif request.status == 'approved' %}
Genehmigt
{% elif request.status == 'denied' %}
Abgelehnt
{% endif %}

Anfrage-ID

#{{ request.id }}

Erstellt am

{{ request.created_at|format_datetime }}

Name

{{ request.name }}

Gewünschte Dauer

{{ request.duration_min }} Minuten

{% if request.reason %}

Begründung

{{ request.reason }}

{% endif %} {% if request.printer %}

Drucker

{{ request.printer.name }} {% if request.printer.location %}({{ request.printer.location }}){% endif %}

{% endif %}
{% if request.status == 'pending' %}

Ihre Anfrage wird geprüft

Unser Team prüft Ihre Anfrage. Sie erhalten eine Benachrichtigung, sobald eine Entscheidung getroffen wurde. Diese Seite aktualisiert sich automatisch alle 30 Sekunden.

{% elif request.status == 'approved' %} {% if otp_code %}

Ihr Zugangscode

{{ otp_code }}

Wichtig: Dieser Code ist nur einmalig verwendbar und wird nach der Nutzung gelöscht.

{% endif %} {% if job %}

Ihr Druckjob

Job-ID: #{{ job.id }}
Geplanter Start: {{ job.start_at|format_datetime }}
Geplantes Ende: {{ job.end_at|format_datetime }}
Status: {% if job.status == 'scheduled' %}Geplant{% elif job.status == 'running' %}Läuft{% elif job.status == 'finished' %}Abgeschlossen{% else %}{{ job.status }}{% endif %}
{% if otp_code and job.status == 'scheduled' %}

Sie haben bis {{ (job.start_at|as_datetime + timedelta(minutes=5))|format_datetime }} Zeit, den Druck zu starten

{% endif %} {% endif %} {% elif request.status == 'denied' %}

Anfrage abgelehnt

Ihre Anfrage wurde leider abgelehnt. Bei Fragen wenden Sie sich bitte an unser Team.

{% endif %}
{% if request.status == 'approved' and otp_code and job %} {% endif %} {% endblock %}