Ajout création/modification groupes K-Fêt

This commit is contained in:
Aurélien Delobelle 2016-08-21 05:51:55 +02:00
parent e64a443fb3
commit 8329c0b511
9 changed files with 1043 additions and 3 deletions

View file

@ -12,7 +12,7 @@
<div class="line"></div>
</div>
<div class="buttons">
<a class="btn btn-primary btn-lg" href="">Créer un groupe</a>
<a class="btn btn-primary btn-lg" href="{% url 'kfet.account.group.create' %}">Créer un groupe</a>
</div>
</div>
</div>
@ -21,6 +21,11 @@
<div class="content-right">
{% for group in groups %}
<div class="content-right-block">
<div class="buttons-title">
<a class="btn btn-primary" href="{% url 'kfet.account.group.update' group.pk %}">
<span class="glyphicon glyphicon-cog"></span>
</a>
</div>
<h2>{{ group.name }}</h2>
<div class="row">
<div class="col-sm-6">

View file

@ -0,0 +1,25 @@
{% 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 %}