Files
caminus/minecraft/forms.py
Trever Fischer e0957c2dab Move MinecraftProfile from the profiles app into the minecraft app, and stop using the auth profiles feature.
Might go back to auth profiles if a suitable use can be found.
2012-03-04 23:18:00 -05:00

10 lines
205 B
Python

from django import forms
from django.contrib.auth.models import User
import models
class ProfileForm(forms.ModelForm):
class Meta:
model = models.MinecraftProfile
exclude = ('user',)