"Ownership" now is now determined by ACL of a folder, like the rest of the objects in the system.
12 lines
253 B
Python
12 lines
253 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.contrib import admin
|
|
|
|
from .models import Folder
|
|
|
|
|
|
@admin.register(Folder)
|
|
class FolderAdmin(admin.ModelAdmin):
|
|
filter_horizontal = ('documents',)
|
|
list_display = ('label', 'datetime_created')
|