20 lines
439 B
Python
20 lines
439 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# ITerativ GmbH
|
|
# http://www.iterativ.ch/
|
|
#
|
|
# Copyright (c) 2019 ITerativ GmbH. All rights reserved.
|
|
#
|
|
# Created on 2019-10-10
|
|
# @author: chrigu <christian.cueni@iterativ.ch>
|
|
from django.contrib import admin
|
|
|
|
from registration.models import License
|
|
|
|
|
|
@admin.register(License)
|
|
class LicenseAdmin(admin.ModelAdmin):
|
|
list_display = ('licensee',)
|
|
list_filter = ('licensee',)
|
|
raw_id_fields = ('licensee',)
|