mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
34d240c6e8
It just seems fitting is all
19 lines
317 B
HTML
19 lines
317 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
|
|
<div class='panel panel-primary'>
|
|
<div class='panel-heading'>
|
|
{% block obj_title %}
|
|
Object title goes here
|
|
{% endblock %}
|
|
</div>
|
|
<div class='panel-body'>
|
|
{% load crispy_forms_tags %}
|
|
{% crispy form %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %} |