forked from DGNum/gestioCOF
25 lines
547 B
HTML
25 lines
547 B
HTML
{% extends 'kfet/base.html' %}
|
|
{% load staticfiles %}
|
|
|
|
{% block extra_head %}
|
|
<link rel="stylesheet" text="text/css" href="{% static 'kfet/css/multiple-select.css' %}">
|
|
<script src="{% static 'kfet/js/multiple-select.js' %}"></script>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Enregistrer">
|
|
</form>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$("select").multipleSelect({
|
|
width: 500,
|
|
});
|
|
});
|
|
</script>
|
|
|
|
{% endblock %}
|