Mercurial > public > sg101
view gpp/membermap/forms.py @ 5:63696b279e35
Display news links and send to friend on the summary page. Use icons.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 11 Apr 2009 19:45:17 +0000 |
parents | dbd703f7d63a |
children | b6263ac72052 |
line wrap: on
line source
""" Forms for the member map application. """ from django import forms from membermap.models import MapEntry class MapEntryForm(forms.ModelForm): class Meta: model = MapEntry fields = ('location', 'message') class Media: css = { 'all': ('js/markitup/skins/markitup/style.css', 'js/markitup/sets/markdown/style.css') } js = ( 'js/markitup/jquery.markitup.pack.js', 'js/markitup/sets/markdown/set.js', ) # vim: ts=4 sw=4