Skip to content

Instantly share code, notes, and snippets.

View MiniGunnR's full-sized avatar

Mohaiminul Hasan MiniGunnR

  • Design Ace Limited
  • Dhaka, Bangladesh
View GitHub Profile
@MiniGunnR
MiniGunnR / forms.py
Created April 28, 2017 11:15 — forked from neara/forms.py
Django Class Based Views and Inline Formset Example
from django.forms import ModelForm
from django.forms.models import inlineformset_factory
from models import Sponsor, Sponsorship
class SponsorForm(ModelForm):
class Meta:
model = Sponsor