1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # Admin
class OrderActionAdmin(admin.ModelAdmin):
model = OrderAction
form = OrderActionOperatorForm
# Form
class OrderActionOperatorForm(forms.ModelForm):
class Meta:
model = OrderAction
def __init__(self, *args, **kwargs):
super(OrderActionOperatorForm, self).__init__(*args, **kwargs)
if kwargs.has_key('instance'):
instance = kwargs['instance']
# render content of field, not the widget
instance.action_detail = linebreaksbr(urlize(instance.action_detail))
instance.comment = linebreaksbr(urlize(instance.comment))
|
More like this
- TextField by simon 4 years ago
- Replace Paragraph Tags for Flash by blackbrrr 4 years, 9 months ago
- render_as_template template tag by cogat 4 years, 2 months ago
- base64 encoding/decoding property for storing binary data in Django TextFields. by bikeshedder 3 years, 11 months ago
- Autocomplete TextInput Widget w/ Static Data (jQuery UI) by JoeLinux 2 months, 1 week ago
Comments