forked from uncloud/uncloud
amal
b7aa1c6971
- Implement a complete cycle for buying a Matrix Chat Host - Refactor the Payement cycle and stripe related methods
8 lines
168 B
Python
8 lines
168 B
Python
from django import forms
|
|
from django.contrib.auth.models import User
|
|
|
|
|
|
class UserDeleteForm(forms.ModelForm):
|
|
class Meta:
|
|
model = User
|
|
fields = []
|