telegram_bots/bots/forms.py

29 lines
745 B
Python
Raw Normal View History

2019-11-24 16:22:30 +00:00
from django import forms
2019-11-12 17:13:56 +00:00
from django.forms import ModelForm
2019-11-24 16:22:30 +00:00
from djconfig.forms import ConfigForm
2019-11-12 17:13:56 +00:00
from bots.models import TelegramBot
class BotForm(ModelForm):
prefix = 'bot'
def __init__(self, *args, module, **kwargs):
super().__init__(*args, **kwargs)
if not hasattr(module, 'rpc_dispatcher'):
self.fields.pop('rpc_name')
if not hasattr(module, 'periodic_task'):
self.fields.pop('periodic_interval')
self.fields.pop('periodic_last_run')
class Meta:
model = TelegramBot
exclude = 'owner', 'config_type', 'config_id',
2019-11-24 16:22:30 +00:00
class BotsAppConfigForm(ConfigForm):
slug = 'bots'
title = 'Bots'
tmp_uploads_chat_id = forms.CharField(required=True)