10 lines
219 B
Python
10 lines
219 B
Python
|
from django.contrib import admin
|
||
|
|
||
|
from .models import JournalEntry
|
||
|
|
||
|
|
||
|
class JournalAdmin(admin.ModelAdmin):
|
||
|
list_display = ('entry_text', 'cofeux_id', 'payment_type')
|
||
|
|
||
|
|
||
|
admin.site.register(JournalEntry, JournalAdmin)
|