22 lines
830 B
HTML
22 lines
830 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ title }} — ERP WaterSurf{% endblock %}
|
|
{% block content %}
|
|
<div class="ws-card">
|
|
<h2 class="ws-page-title">{% if object %}Редактировать{% else %}Создать{% endif %} {{ title }}</h2>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{% for field in form %}
|
|
<div class="ws-form-group">
|
|
<label for="{{ field.id_for_label }}">{{ field.label }}</label>
|
|
{{ field }}
|
|
{% if field.errors %}<small class="ws-text-danger">{{ field.errors.0 }}</small>{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
<div class="ws-btn-group" style="margin-top: 1rem;">
|
|
<button type="submit" class="btn btn-ws-primary">Сохранить</button>
|
|
<a href="{{ cancel_url }}" class="btn btn-ws-secondary">Отмена</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|