projets
/
auf_savoirs_en_partage_django.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
f515644baf1b28d38feddc1e30ec5242b2981d48
[auf_savoirs_en_partage_django.git]
/
auf_savoirs_en_partage
/
templates
/
savoirs
/
assigner.html
1
{% extends
"admin/base_site.html"
%}
2
3
{% block title %}{{titre}}{% endblock %}
4
5
{% block content %}
6
<div
id
=
"content-main"
>
7
<h1>
{{description}}
</h1>
8
<ul>
9
{% for o in objects %}
10
<li>
{{ o }}
</li>
11
{% endfor %}
12
</ul>
13
</div>
14
<form
action
=
""
method
=
"post"
>
15
{{form.as_p}}
16
<input
type
=
"submit"
value
=
"Assigner"
/>
17
</form>
18
{% endblock %}