1
0
Fork 0
mirror of https://github.com/Findus23/acronomy.git synced 2024-09-19 15:33:45 +02:00
acronomy/acros/templates/acros/add.html

23 lines
489 B
HTML

{% extends 'base.html' %}
{% load bootstrap4 %}
{% load static %}
{% block heading %}
<h1>Add new Acronym</h1>
{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
{% bootstrap_form form %}
{% buttons %}
<input type="submit" value="Update">
{% endbuttons %}
</form>
{% endblock %}
{% block extra_head %}
<script src="{% static "libs/codemirror.js" %}"></script>
<script src="{% static "libs/markdown.js" %}"></script>
{% endblock %}