Initial changes to support the new Django 1.6 project structure
This commit is contained in:
9
mayan/apps/django_gpg/forms.py
Normal file
9
mayan/apps/django_gpg/forms.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from django import forms
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
|
||||
class KeySearchForm(forms.Form):
|
||||
term = forms.CharField(
|
||||
label=_(u'Term'),
|
||||
help_text=_(u'Name, e-mail, key ID or key fingerprint to look for.')
|
||||
)
|
||||
Reference in New Issue
Block a user