Files
mayan-edms/apps/history/forms.py
2011-05-26 05:07:26 -04:00

12 lines
267 B
Python

from django import forms
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')