mirror of
https://github.com/Rushilwiz/todos.git
synced 2025-04-09 23:00:17 -04:00
10 lines
265 B
Python
10 lines
265 B
Python
from django import forms
|
|
|
|
from .models import Task
|
|
|
|
class TaskForm(forms.ModelForm):
|
|
title = forms.CharField(widget=forms.TextInput(attrs={'placeholder':'Add new task...', 'id':'input-box'}))
|
|
|
|
class Meta:
|
|
model = Task
|
|
fields = ('title',) |