diff --git a/webapp/templates/imaging.html b/webapp/templates/imaging.html index f27821c..e153f15 100644 --- a/webapp/templates/imaging.html +++ b/webapp/templates/imaging.html @@ -49,8 +49,8 @@ window.addEventListener('DOMContentLoaded', scheduleImagingReload); 4: ('Apps installed', 'Type-specific scripts complete. Preparing for Intune enrollment.'), 5: ('Enrolling in Intune', 'PPKG installing - device joining Azure AD + Intune. ~5-10 min, reboot to follow.'), 6: ('Waiting on first Intune sync','Post-PPKG settle (~120s). Triggering Schedule #3 sync repeatedly.'), - 7: ('Registered - awaiting category / lockdown', - 'Device ID captured. If category not yet set in Intune, click "set category". Once set, bay waits for the Intune-driven LAPS-prompt reboot to apply lockdown.'), + 7: ('Awaiting Intune lockdown', + 'Device ID captured. If Device Category is NOT yet set in Intune, click "set category" first. Bay then waits for the Intune-driven LAPS-prompt reboot to apply the lockdown configuration.'), 8: ('Imaging complete', 'Lockdown applied. Bay rebooted into ShopFloor session. Ready for production.') } %} @@ -63,9 +63,9 @@ window.addEventListener('DOMContentLoaded', scheduleImagingReload); {% set is_done = s.status == 'succeeded' %} {% set border = 'danger' if is_failed else ('success' if is_done else 'primary') %} {% set friendly = stage_labels.get(stage_idx, ('Stage ' ~ stage_idx, '')) %} -
{{ s.started_at or '-' }}
- last {{ s.last_updated or '-' }}
- MAC {{ s.mac or '-' }}
- {% if s.current_stage %}{{ s.current_stage }}{% endif %}
- {{ s.started_at or '-' }}
+ last {{ s.last_updated or '-' }}
+ MAC {{ s.mac or '-' }}
+ {% if s.current_stage %}{{ s.current_stage }}{% endif %}
+ {% for line in s.log_tail %}{{ line }}
{% endfor %}
@@ -164,7 +171,7 @@ window.addEventListener('DOMContentLoaded', scheduleImagingReload);