django-admin makemessages --no-obsolete doesn't seem to be working

2018-03-18 Thread Kishor Pawar
First of all, I am expecting `--no-obsolete` would comment out `msgid` and `msgstr` if `gettext` is deleted, right? How I am testing is: 1. I wrote `gettext("some string here")` in view 2. I ran `makemessages` command 3. It wrote a `.po` file as expected 4. Then I deleted `gettext()` line

Dealing with templates in an open source Django project?

2018-03-18 Thread 'Simon Connah' via Django users
Hi, First of all apologies for posting two messages to this list in a couple of days but I've just got back into Django after a rather long break, and it is taking me a little time to get back in the swing of things. I'm in the process of making a simple blogging platform which I intend to relea

Re: Dealing with templates in an open source Django project?

2018-03-18 Thread Etienne Robillard
Hi Simon, I'll try to help you out with that. Have you considered using Django models to allow end users to create, edit and customize templates within the Django admin? This should be pretty easy to do. All you need is to define some models for your customized templates and then the user c