projets
/
auf_django_references.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
[#2534] Tests pour l'utilisation du formulaire ailleurs que dans l'admin
[auf_django_references.git]
/
tests
/
universite
/
templates
/
universite
/
universite_form.html
Commit
Line
Data
b8abf60c
EMS
1
<html>
2
<head>
3
{{ form.media }}
4
</head>
5
<body>
6
<form action="" method="post">
7
{% csrf_token %}
8
<table>
9
{{ form }}
10
<tr>
11
<td></td>
12
<td><input type="submit" value="Enregistrer" /></td>
13
</tr>
14
</table>
15
</form>
16
</body>
17
</html>