Skip to content

Commit

Permalink
Add classe para o Formulário de Tarefa #18
Browse files Browse the repository at this point in the history
  • Loading branch information
tacianosilva committed Nov 5, 2020
1 parent ea1dea6 commit 24ee350
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tasktracking/tasks/forms.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from django import forms
from tasks.models import Tarefa


class TarefaForm(forms.ModelForm):
class Meta:
model = Tarefa
fields = '__all__'

0 comments on commit 24ee350

Please sign in to comment.