10 lines
241 B
Python
10 lines
241 B
Python
from common.forms import DetailForm
|
|
|
|
from history.models import History
|
|
|
|
|
|
class HistoryDetailForm(DetailForm):
|
|
class Meta:
|
|
model = History
|
|
exclude = ('datetime', 'content_type', 'object_id', 'history_type', 'dictionary')
|