intra_max_chatbot/admin/templates/orgs/edit.html
2026-03-26 00:25:37 +03:00

17 lines
693 B
HTML

{% extends "base.html" %}
{% block title %}Редактировать организацию{% endblock %}
{% block content %}
<h1>Редактировать организацию</h1>
<div class="card" style="max-width:480px">
<form action="/admin/orgs/{{ org.id }}/edit" method="post">
<div class="form-row">
<label>Название организации</label>
<input type="text" name="name" required value="{{ org.name }}">
</div>
<div style="display:flex;gap:8px">
<button class="btn btn-primary" type="submit">Сохранить</button>
<a href="/admin/orgs" class="btn btn-secondary">Отмена</a>
</div>
</form>
</div>
{% endblock %}