mirror of
https://github.com/seriousm4x/UpSnap.git
synced 2026-07-29 00:42:41 -04:00
14 lines
468 B
Python
14 lines
468 B
Python
from django import forms
|
|
|
|
from .models import Settings
|
|
|
|
|
|
class SettingsForm(forms.Form):
|
|
class Meta:
|
|
model = Settings
|
|
fields = []
|
|
notifications = forms.CharField(widget=forms.RadioSelect, label="notifications")
|
|
console = forms.CharField(widget=forms.RadioSelect, label="console")
|
|
sort = forms.ChoiceField(choices=[("name", "name"), ("ip", "ip")], widget=forms.RadioSelect, label="sort")
|
|
ip_range = forms.CharField(label="ip_range")
|