Added phpList
This commit is contained in:
parent
6874060fc3
commit
de09d72118
|
@ -0,0 +1,16 @@
|
|||
from django import forms
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
from orchestra.forms import PluginDataForm
|
||||
|
||||
from .options import SoftwareService
|
||||
|
||||
|
||||
class PHPListForm(PluginDataForm):
|
||||
email = forms.EmailField(label=_("Email"))
|
||||
|
||||
|
||||
class PHPListService(SoftwareService):
|
||||
verbose_name = "phpList"
|
||||
form = PHPListForm
|
||||
description_field = 'email'
|
Loading…
Reference in New Issue