mirror of
https://gitlab.crans.org/mediatek/med.git
synced 2025-03-14 12:37:31 +00:00
19 lines
476 B
HTML
19 lines
476 B
HTML
{% extends "media/sidebar.html" %}
|
|
{% comment %}
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Création et modification de media{% endblock %}
|
|
|
|
{% block content %}
|
|
{% bootstrap_form_errors mediaform %}
|
|
|
|
<form class="form" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form mediaform %}
|
|
{% bootstrap_button "Créer ou modifier" button_type="submit" icon="star" %}
|
|
</form>
|
|
{% endblock %}
|