24 lines
652 B
HTML
24 lines
652 B
HTML
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}Manufacturing App{% endblock %}</title>
|
|
|
|
<!-- Print-specific CSS -->
|
|
{% load static %}
|
|
<link rel="stylesheet" href="{% static 'css/print.css' %}" media="print">
|
|
<link rel="stylesheet" href="{% static 'css/print-screen.css' %}" media="screen">
|
|
</head>
|
|
<body>
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
<script>
|
|
// Auto-print when page loads
|
|
window.onload = function() {
|
|
window.print();
|
|
};
|
|
</script>
|
|
</body>
|
|
</html> |