Files @ 3103218fc6b4
Branch filter:

Location: copyleftconf-website-fork/pinaxcon/registrasion/admin.py

Brett Smith
about: Make previous change on *this* page, as requested.
1
2
3
4
5
6
7
8
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")