django-orchestra/orchestra/apps/saas/services/moodle.py

21 lines
628 B
Python
Raw Normal View History

2014-10-10 17:17:20 +00:00
from django import forms
from django.utils.translation import ugettext_lazy as _
from orchestra.plugins.forms import PluginDataForm
2014-10-10 17:17:20 +00:00
from .options import SoftwareService
class MoodleForm(PluginDataForm):
username = forms.CharField(label=_("Username"), max_length=64)
password = forms.CharField(label=_("Password"), max_length=64)
site_name = forms.CharField(label=_("Site name"), max_length=64)
email = forms.EmailField(label=_("Email"))
class MoodleService(SoftwareService):
verbose_name = "Moodle"
form = MoodleForm
description_field = 'site_name'
2015-03-04 21:06:16 +00:00
icon = 'orchestra/icons/apps/Moodle.png'