InvenTree/InvenTree/templates/create_edit_obj.html
Oliver 34d240c6e8 Moved top-level templates to a top-level dir
It just seems fitting is all
2018-04-17 23:42:25 +10:00

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 %}