Files
mayan-edms/mayan/apps/folders/admin.py
Roberto Rosario 1c65b389ee Remove concept of ownership from folders by removing the user field.
"Ownership" now is now determined by ACL of a folder, like the rest of the objects in the system.
2016-03-08 01:20:10 -04:00

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