24 lines
570 B
HTML
24 lines
570 B
HTML
{% extends 'base_print.html' %}
|
|
|
|
{% block title %}Dashboard - Manufacturing App{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="print-header">
|
|
<h1>Manufacturing Dashboard</h1>
|
|
<p>Printed on: {% now "d M Y H:i" %}</p>
|
|
</div>
|
|
|
|
<div class="dashboard-widgets">
|
|
{% for widget in widgets %}
|
|
<div class="widget-print">
|
|
<h3>{{ widget.title }}</h3>
|
|
<!-- Widget content for printing -->
|
|
{{ widget.content|safe }}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class="print-footer">
|
|
<p>Manufacturing App - Confidential</p>
|
|
</div>
|
|
{% endblock %} |