Files @ 9158aff702ed
Branch filter:

Location: website/conservancy/usethesource/forms.py

bsturmfels
usethesource: Fix typo in email signature
from django import forms

from .models import Comment


class CommentForm(forms.ModelForm):
    class Meta:
        model = Comment
        fields = ['message']


class DownloadForm(forms.Form):
    agree = forms.BooleanField(label="I promise and represent that I will not copy, distribute, modify, or otherwise use this source code candidate and/or firmware for any purpose other than to help SFC evaluate the source code candidate for compliance with the terms of the GNU General Public License (any version).")