19 lines
568 B
HTML
19 lines
568 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}{{ module_title }} - Manufacturing App{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
|
|
<h1 class="h2">{{ module_title }}</h1>
|
|
<div class="btn-toolbar mb-2 mb-md-0">
|
|
{% block module_actions %}
|
|
<!-- Module-specific actions will be added here -->
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
|
|
{% block module_content %}
|
|
<!-- Module-specific content will be added here -->
|
|
{% endblock %}
|
|
|
|
{% endblock %} |