Skip to content

Instantly share code, notes, and snippets.

@RodolfoSilva
Created December 17, 2015 12:56
Show Gist options
  • Save RodolfoSilva/2e47b48d118bd49362f9 to your computer and use it in GitHub Desktop.
Save RodolfoSilva/2e47b48d118bd49362f9 to your computer and use it in GitHub Desktop.
from django import forms
from .models import Categoria
class CategoriaForm(forms.ModelForm):
class Meta:
model = Categoria
fields = '__all__'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment