Vince Salvino
Vince Salvino
It would definitely make sense for us to provide a better sitemap, if Wagtail's is limiting. I'd be happy to review a PR @pierremanceaux if you would be willing to...
This has not been a priority or a need for us. However, if someone is willing to implement it, including tests and docs, I would be willing to review and...
Based on the error, it seems like you need to install wheel (`pip install wheel`). This has been my experience as well with all python packages that provide wheels. Does...
This is would be very useful for serializing to logs or storing results in a database for further human review. Normally I would use `__dict__` in a pinch, but it...
Our table block is currently not customizable. It is actually a very thin wrapper around the stock Wagtail table block: https://github.com/coderedcorp/coderedcms/blob/19d9f2b8c0d02b8d8f3a3f9e84208c1279656aa5/coderedcms/blocks/html_blocks.py#L169-L175 I'd recommend looking into the Wagtail Table block, and...
@michaelsteigman what do you think of these additions?
What you are describing is how iframes work (embedding one HTML file inside another). If you would like the content of the iframe to match the parent page, you will...
Correct, it is not possible to toggle it without changing browser/system preference. This could of course be refactored to use javascript to set a CSS class based on browser/system preference...
Before someone asks, it does work if you search on the exact class object manager: ``` ThirdPage.objects.live().search() ``` But NOT when using `.type()` on the Page object manager: ``` Page.objects.live().type(ThirdPage).search()...
@Supermathew absolutely, anyone is welcome to work on it!