Changeset - cb4971fc25a2
[Not reviewed]
0 0 1
Christopher Neugebauer - 7 years ago 2016-09-13 09:06:20
chrisjrn@gmail.com
Adds an admin for user profiles.

Fixes #5.
1 file changed with 9 insertions and 0 deletions:
0 comments (0 inline, 0 general)
pinaxcon/registrasion/admin.py
Show inline comments
 
new file 100644
 
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")
0 comments (0 inline, 0 general)