Is there a WYSIWYG app I can use for an inherited Django created website?

28 views
Skip to first unread message

DjamgoNewbie

unread,
May 26, 2018, 1:19:16 PM5/26/18
to Django users

I have worked with WordPress but I inherited an already made website built with Django. Is there a WYSIWYG app that I can use to update/edit the Django site without me having to learn Django /Python first? The updates/corrections to the website are time sensitive.

Anthony Flury

unread,
May 26, 2018, 2:02:50 PM5/26/18
to django...@googlegroups.com
Basically no. 

While there might be a WYSIWYG editor for the templates (which are basically HTML, JS and CSS with an embedded python like script) they will only edit the html within the template file and you won’t see the auto generated html for the individual Django fields, or the other Django constructs within the template.

Django is also a lot more complex than a wordpress - WP tends to be static pages (I have never seen a WP page which fetched data from a database; Django web site are often a mix between all static pages (like the welcome page) and pages where most/ all of the content is dynamic with data extracted live from a database. There is often a certain level of processing of the data before it gets displayed on the page - and that is where Python comes in. 

I think you need to learn some HTML, CSS (and Python & Django); even adding a new static web page to an existing site requires you to understand something of the Django framework (so that you know how page requests get translated into views on templates). 

-- 
Anthony Flury
Twitter : @TonyFlury

On 26 May 2018, at 17:34, DjamgoNewbie <miker...@gmail.com> wrote:

I have worked with WordPress but I inherited an already made website built with Django. Is there a WYSIWYG app that I can use to update/edit the Django site without me having to learn Django /Python first? The updates/corrections to the website are time sensitive.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/1d3a6753-caf8-4c1f-981a-fb1f3a4065e7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Mike Dewhirst

unread,
May 26, 2018, 8:08:40 PM5/26/18
to django...@googlegroups.com
What does the website do for the visitors/users?

Inheriting a site is great fun if you are getting paid. If so maybe someone here can help if you offer something.

Otherwise, run pip freeze to see what apps have been installed and that together with the answer to the use-case question might (or might not) be enough to suggest a timely approach.

Mike

Connected by Motorola
Reply all
Reply to author
Forward
0 new messages