Files
mayan-edms/apps/history/forms.py
2011-06-08 01:39:38 -04:00

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')