To enable:
AUTHENTICATION_BACKENDS = ('common.auth.email_auth_backend.EmailAuthBackend',)
COMMON_LOGIN_METHOD = 'email'
99 lines
3.5 KiB
Python
99 lines
3.5 KiB
Python
import os
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
from django.utils.safestring import mark_safe
|
|
from django import forms
|
|
from django.forms.util import flatatt
|
|
from django.utils.html import escape, conditional_escape
|
|
from django.utils.encoding import StrAndUnicode, force_unicode
|
|
|
|
|
|
class PlainWidget(forms.widgets.Widget):
|
|
def render(self, name, value, attrs=None):
|
|
return mark_safe(u'%s' % value)
|
|
|
|
|
|
class DetailSelectMultiple(forms.widgets.SelectMultiple):
|
|
def __init__(self, queryset=None, *args, **kwargs):
|
|
self.queryset = queryset
|
|
super(DetailSelectMultiple, self).__init__(*args, **kwargs)
|
|
|
|
def render(self, name, value, attrs=None, choices=(), *args, **kwargs):
|
|
if value is None:
|
|
value = ''
|
|
final_attrs = self.build_attrs(attrs, name=name)
|
|
css_class = final_attrs.get('class', 'list')
|
|
output = u'<ul class="%s">' % css_class
|
|
options = None
|
|
if value:
|
|
if getattr(value, '__iter__', None):
|
|
options = [(index, string) for index, string in \
|
|
self.choices if index in value]
|
|
else:
|
|
options = [(index, string) for index, string in \
|
|
self.choices if index == value]
|
|
else:
|
|
if self.choices:
|
|
if self.choices[0] != (u'', u'---------') and value != []:
|
|
options = [(index, string) for index, string in \
|
|
self.choices]
|
|
|
|
if options:
|
|
for index, string in options:
|
|
if self.queryset:
|
|
try:
|
|
output += u'<li><a href="%s">%s</a></li>' % (
|
|
self.queryset.get(pk=index).get_absolute_url(),
|
|
string)
|
|
except AttributeError:
|
|
output += u'<li>%s</li>' % (string)
|
|
else:
|
|
output += u'<li>%s</li>' % string
|
|
else:
|
|
output += u'<li>%s</li>' % _(u"None")
|
|
return mark_safe(output + u'</ul>\n')
|
|
|
|
|
|
def exists_with_famfam(path):
|
|
try:
|
|
return two_state_template(os.path.exists(path))
|
|
except Exception, exc:
|
|
return exc
|
|
|
|
|
|
def two_state_template(state, famfam_ok_icon=u'tick', famfam_fail_icon=u'cross'):
|
|
if state:
|
|
return mark_safe(u'<span class="famfam active famfam-%s"></span>' % famfam_ok_icon)
|
|
else:
|
|
return mark_safe(u'<span class="famfam active famfam-%s"></span>' % famfam_fail_icon)
|
|
|
|
|
|
class TextAreaDiv(forms.widgets.Widget):
|
|
def __init__(self, attrs=None):
|
|
# The 'rows' and 'cols' attributes are required for HTML correctness.
|
|
default_attrs = {'class': 'text_area_div'}
|
|
if attrs:
|
|
default_attrs.update(attrs)
|
|
super(TextAreaDiv, self).__init__(default_attrs)
|
|
|
|
def render(self, name, value, attrs=None):
|
|
if value is None: value = ''
|
|
final_attrs = self.build_attrs(attrs, name=name)
|
|
result = mark_safe(u'<div%s>%s</div>' % (flatatt(final_attrs),
|
|
conditional_escape(force_unicode(value))))
|
|
|
|
return mark_safe(result.replace('\n', '<br>'))
|
|
|
|
|
|
# From: http://www.peterbe.com/plog/emailinput-html5-django
|
|
class EmailInput(forms.widgets.Input):
|
|
input_type = 'email'
|
|
|
|
def render(self, name, value, attrs=None):
|
|
if attrs is None:
|
|
attrs = {}
|
|
attrs.update(dict(autocorrect='off',
|
|
autocapitalize='off',
|
|
spellcheck='false'))
|
|
return super(EmailInput, self).render(name, value, attrs=attrs)
|