view gpp/membermap/forms.py @ 118:a20b2c492d55

Reduced some sql queries by adding a select_related and monkey patching user profiles onto a user list in shoutbox and the bio/member's list, respectively.
author Brian Neal <bgneal@gmail.com>
date Sat, 24 Oct 2009 02:39:19 +0000
parents b6263ac72052
children c515b7401078
line wrap: on
line source
"""
Forms for the member map application.
"""
from django import forms
from django.conf import settings

from membermap.models import MapEntry


class MapEntryForm(forms.ModelForm):

    class Meta:
        model = MapEntry
        fields = ('location', 'message')

    class Media:
        css = {
            'all': settings.GPP_THIRD_PARTY_CSS['markitup']
        }
        js = settings.GPP_THIRD_PARTY_JS['markitup']

# vim: ts=4 sw=4