projets
/
auf_rh_dae.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
lien
[auf_rh_dae.git]
/
project
/
dae
/
admin.py
Commit
Line
Data
17353922
OL
1
# -*- encoding: utf-8 -*-
2
3
from django.contrib import admin
4
from reversion.admin import VersionAdmin
5
from models import Poste
6
7
class PosteAdmin(VersionAdmin):
8
pass
9
10
admin.site.register(Poste, PosteAdmin)
11
12
13