public
Description: A personal journal application written in Django. You need this.
Homepage: http://trey.github.com/chiplog
Clone URL: git://github.com/trey/chiplog.git
Click here to lend your support to: chiplog and make a donation at www.pledgie.com !
chiplog / forms.py
100644 7 lines (5 sloc) 0.121 kb
1
2
3
4
5
6
7
from django import forms
from models import Entry
 
class EntryForm(forms.ModelForm):
    class Meta:
        model=Entry