parent
3d534bcf42
commit
cb4971fc25
1 changed files with 9 additions and 0 deletions
9
pinaxcon/registrasion/admin.py
Normal file
9
pinaxcon/registrasion/admin.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
import models
|
||||
|
||||
from django.contrib import admin
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
@admin.register(models.AttendeeProfile)
|
||||
class UserProfileAdmin(admin.ModelAdmin):
|
||||
model = models.AttendeeProfile
|
||||
list_display = ("name", "company", "name_per_invoice")
|
Loading…
Reference in a new issue