Render TextField in Admin

 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

  1. TextField by simon 4 years ago
  2. Replace Paragraph Tags for Flash by blackbrrr 4 years, 9 months ago
  3. render_as_template template tag by cogat 4 years, 2 months ago
  4. base64 encoding/decoding property for storing binary data in Django TextFields. by bikeshedder 3 years, 10 months ago
  5. Autocomplete TextInput Widget w/ Static Data (jQuery UI) by JoeLinux 2 months ago

Comments

(Forgotten your password?)