Files @ 70d6eb7140c7
Branch filter:

Location: website/www/conservancy/apps/fossy/forms.py

bsturmfels
podjango: Link up "The Corresponding Source" title

This helps with navigating back to the home page.
1
2
3
4
5
6
7
8
9
from django import forms

from .models import CommunityTrackProposal


class CommunityTrackProposalForm(forms.ModelForm):
    class Meta:
        model = CommunityTrackProposal
        exclude = []