How can i hook-up WMD editor on to my django forms?
|
feedback
|
|
Here is complete Django widget class:
Use it in your form definition like | |||||||
feedback
|
|
From the readme.txt in the current WMD download:
So, add the necessary code to the template you're using to render the form, and make sure that the textarea you want to use WMD on is the first on the page, and you'll be good to go. | |||
|
feedback
|
|
I just finished doing this. There are a couple more subtleties to be aware of that aren't covered in the other answers (so far).
So here's some code for you. widgets.py
wmd/widget.html(name this whatever you need for your app)
*NOTE: You might need to adjust the MEDIA_URL depending on how you're handling that (custom template tag, middleware, whatever). If you're new to Django and don't understand what I just said, just hardcode the value in for now to get it working and learn what that all means later.* Lastly, you'll need to make 1 minor edit to the WMD source (note that I'm using the StackOverflow fork, so this might be slightly different for other versions) wmd.js
If you're using the wmd.css and haven't written your own already, you'll also need to make a slight update to that. Because that element is no longer #wmd-input, we'll need to update it to make sure it uses the wmd-input class: wmd.css
Whew! That was a bunch. Hope that helps everyone. | |||
|
feedback
|