Closes #6150: Enable change logging for journal entries

This commit is contained in:
jeremystretch
2021-04-13 10:53:55 -04:00
parent e5bbf47ab9
commit a296a9e109
7 changed files with 77 additions and 11 deletions

View File

@@ -306,6 +306,10 @@ class JournalEntryListView(generic.ObjectListView):
action_buttons = ('export',)
class JournalEntryView(generic.ObjectView):
queryset = JournalEntry.objects.all()
class JournalEntryEditView(generic.ObjectEditView):
queryset = JournalEntry.objects.all()
model_form = forms.JournalEntryForm