Phil Gyford
Phil Gyford
FWIW, I just noticed that my drop-downs were limited to 50 options. I realised I hadn't set `maxOptions` at all, set it to `null`, and now all of my many...
I tried doing this to add a timezone: ```python from django.utils.timezone import make_aware due_poll = models.DateTimeField(default=make_aware(datetime.datetime(1900, 1, 1))) ``` In the resulting migration it comes out as : ```python migrations.AlterField(...
Ah, thank you! I completely understand that setting up the web endpoint isn't something this handles, but I hadn't realised that `findMentions()` is for handling the incoming data to such...
My guess would be that you don't have the correct username and/or password for the database: myproject_web | psycopg2.OperationalError: connection to server at "myproject_db" (172.18.0.2), port 5432 failed: FATAL: password...
Are you connecting to the same database? Can you manually connect to the database using the same credentials? docker exec -it myproject_db psql -U admin -d mydatabase
I should add, if there is a good way to do it, I'll happily do a PR to add the info to the docs!
Now I've come back to this I realise that the only django-tinymce thing my form is using is the static files, in `{{ form.media }}`. Everything else is standard TinyMCE....
I've made good progress. I've scrapped all the above and created my own widget, based off `TinyMCE`, to create and initialise a `` as an inline TinyMCE element. Clicking it,...
> Based on your changes, it looks like you could just set "inline": True in your TinyMCE configuration (e.g. in settings.py)… Yes, true. In my case this was a secondary...
Thinking more... I realise now that the order they're listed in is (I think) the order in which the 'Old Url's are matched. Which means to allow re-sorting by URL...