Questions tagged [wagtail]

Wagtail stands out as a top-notch content management system (CMS) for Django, prioritizing both adaptability and user satisfaction. For increased exposure, consider pairing this tag with the [django] tag.

Excluding Fields from Wagtail API Responses: A Quick Guide

When referring to the Wagtail documentation, there is a specific section dedicated to the exclusion of certain fields from the API (). The focus is on how to remove these fields from the perspective of the API consumer by using the URL query parameter ?f ...

Challenges restricting editors to only their designated content in the Wagtail admin interface

Users who have been assigned to a group with 'add' permissions can access, copy, move, and add pages created by other users via the admin search or by directly entering the correct path in the browser. The aim is to prevent users from viewing each other's ...

What is the method for embedding the creation date of a page within a paragraph on Wagtail?

Whenever a page is created in the admin panel of Wagtail, it automatically displays how much time has elapsed since its creation. https://i.stack.imgur.com/6InSV.png I am looking to include the timestamp of the page's creation within a paragraph in the H ...

Is there a way to determine the location where my website is fetching CSS and media files from?

After implementing Wagtail on my website, I encountered an issue with the CSS and images not being found when the site was put into production. I have already tried running python manage.py collectstatic and ensured that all of my CSS files are located in ...

Selecting multiple options in the wagtail admin

While working with Django ModelAdmin, I am able to utilize the following code snippet: filter_horizontal = ('some_many_to_many_field',) By doing so, rather than displaying the standard multiple select widget, a visually appealing interface is presented w ...

Wagtail user access control for various users granted

Within my wagtail app, I am working on a model that needs to be accessible only to specific types of users. In django, I would typically use the UserPassesTestMixin for this purpose. However, in wagtail, I plan to base access on session data instead. If th ...