Merge pull request #56 from interlegis/master

Add bootstrap3 support
This commit is contained in:
Martin Mahner 2014-05-02 20:40:54 +02:00
commit 6f0481a055

View file

@ -20,7 +20,7 @@ MAX_CONTENT_LENGTH = getattr(settings, 'DPASTE_MAX_CONTENT_LENGTH', 250*1024*102
class SnippetForm(forms.ModelForm):
content = forms.CharField(
label=_('Content'),
widget=forms.Textarea(attrs={'placeholder': _('Awesome code goes here...')}),
widget=forms.Textarea(attrs={'placeholder': _('Awesome code goes here...'), 'class': 'form-control'}),
max_length=MAX_CONTENT_LENGTH,
)
@ -28,12 +28,14 @@ class SnippetForm(forms.ModelForm):
label=_(u'Lexer'),
initial=LEXER_DEFAULT,
choices=LEXER_LIST,
widget=forms.Select(attrs={'class': 'form-control'}),
)
expires = forms.ChoiceField(
label=_(u'Expires'),
choices=EXPIRE_CHOICES,
initial=EXPIRE_DEFAULT,
widget=forms.Select(attrs={'class': 'form-control'}),
)
# Honeypot field