6👍
I haven’t tried it personally, but a co-worker uses the free ActiveState Komodo Edit to edit Django templates, and the page I linked claims support for Django template editing.
There’s also netbeans-django that is building a Django plugin for Netbeans, but no idea how complete or how well it works.
I’ve read that TextMate has a "Django bundle" for editing code and templates if you’re on a Mac.
- [Django]-Is this the right way to do dependency injection in Django?
- [Django]-Filtering using viewsets in django rest framework
- [Django]-PyCharm: DJANGO_SETTINGS_MODULE is undefined
2👍
There’s no WYSIWYG tool like Dreamweaver. But highligting is possible. I am using Kate to edit my templates.
For instance when you comment in Django template it inserts {% comment %}
.
- [Django]-Get list item dynamically in django templates
- [Django]-FileUploadParser doesn't get the file name
- [Django]-Django Rest Framework model serializer with out unique together validation
1👍
Kind of an oblique answer, but if being able to use tools like Dreamweaver on your templates is important to you, you may find you like Genshi better than Django Templates, and it’s easy enough to switch your template engine.
Genshi is an XML templating language that is one of the inheritors of the Zope TAL family. Your template file is a valid XML file, so you can open it in any XML aware tool. Personally, once I got used to using XML templates, I couldn’t go back, but they are slower to process ( an xml parser has to run behind the scenes ) and they require valid XHTML in your output which can be a good or a bad thing. ( Invalid user submitted html content for example would need to be forced clean using something like Beautiful Soup or ElementTree ).
- [Django]-No URL to redirect to. Either provide a url or define a get_absolute_url method on the Model
- [Django]-AccessDenied when calling the CreateMultipartUpload operation in Django using django-storages and boto3
- [Django]-Django error: got multiple values for keyword argument
1👍
I’m really liking Eclipse with Pydev and the Aptana Studio 3 Eclipse plugin. More info here: http://pydev.blogspot.com/2010/08/django-templates-editor.html
(The first thing I did was change the theme. I quite like the Mac Classic theme’s Django template highlighting.)
- [Django]-How can I avoid "Using selector: EpollSelector" log message in Django?
- [Django]-How can I get MINIO access and secret key?
- [Django]-Django Footer and header on each page with {% extends }
0👍
Don’t forget for the Emacs Users there is django template assistance. The Emacs link will take you to more helpful documentation in Emacs.
- [Django]-Filtering dropdown values in django admin
- [Django]-Resource temporarily unavailable using uwsgi + nginx
- [Django]-FileUploadParser doesn't get the file name