Questions tagged [wagtail-admin]
135 questions
0
votes
2 answers
Wagtail. Ability to edit html within editor
My editors want to have an ability to edit raw html within editor.
For example, we can have simple list markup:
- Some text
- Some text
Vladislav
- 47
- 1
- 7
0
votes
1 answer
Wagtail admin display issues
I'm working with wagtail and I'm using microsoft edge browser for editing the content of my website. When I'm inside the edit mode of one page, the left edge of the page is cut off (see screenshot below).
I also tried other browsers with the same…

bripu
- 13
- 3
0
votes
1 answer
Wagtail Search in CMS
I'm trying to search through all of my pages on the backend to find instances of urls with outdated domain names. But when I search, it only seems to get hits based on the title of the pages, and not their content. Is there something I need to…

sine1son
- 1
- 1
0
votes
1 answer
Django: How to trigger a function whenever certain objects are modified from the wagtail interface
I have a long list of "Quotation" objects.
The price of a quotation depends on dozens of children (and grand children) objects. The lowest one being the rate/hour.
When I change the children objects of a quotation like the rate/hour, the quotation…

Vincent Roye
- 2,751
- 7
- 33
- 53
0
votes
1 answer
How is `class Blog(page)` linked to a specific `Page` in Wagtail CMS GUI?
I do understand how the routing of Wagtail works when a HTTP request arrives.
site matching via hostname and port
find the specific page via slug settings on Wagtail CMS GUI
serve() of that specific page will be called
However, above routing…

Yan Tian
- 377
- 3
- 11
0
votes
1 answer
Override helptext in Wagtail EditView
I am trying to override the helptext that is set in my model in the wagtail admin (an edit view). I have tried the code below but the text is not changed, why is that?
class MemberRegistrationEditView(EditView):
def get_form(self):
…

Andreas
- 1,421
- 3
- 16
- 32
0
votes
1 answer
How to prefix a foreign key object to a model field in Wagtail admin?
In this case, each feature has one Epic (models.Model)
epic = models.ForeignKey(Epic, on_delete=models.CASCADE, default='')
In the admin drop-down (and only there) I would like to show each item as:
epic.name - feature.name
Because some of my…

Vincent Roye
- 2,751
- 7
- 33
- 53
0
votes
1 answer
Filter the pages available to link to another page
I'm really new to Wagtail. I've been trying to find a way to filter a the values in a chooser (PageChooserPanel). I'm building a story site where authors can create non-linear stories. I followed a blog model to build this and expanded on it. I've…

ron_e_e
- 3
- 2
0
votes
0 answers
How to set-up wagtail pages
I am trying to configure a django project that uses the wagtail CMS to display the templates(the templates is already in the file) on the frontend but since it is my first time working with wagtail, I am having issues and don't know where to head…

oyerohabib
- 187
- 3
- 16
0
votes
1 answer
Is there a way to filter the Document chooser when it's opened from a particular block's form?
I'm writing a custom StreamBlock that is designed to render a table based on the data in a given CSV file. The CSV files will be stored in the usual Document store, so the block needs to present the Document chooser to let the user pick a CSV…

coredumperror
- 8,471
- 6
- 33
- 42
0
votes
1 answer
Creating a alert functionality in django wagtail
I am trying to create a alert section for a menu (similar to the menu on this page https://metageeky.github.io/mega-menu/responsive-header.html)
*Each alert should have an effective date (date alert is “posted” live) and resolved date (date alert is…

soupi
- 1
- 2
0
votes
2 answers
How can I append an index number to the auto-generated slug in Wagtail CMS
I am using Wagtail CMS for a project. I'm able to create entries and update them without issue.
I have moved the slug field from the Promote panel into my content panel. This is what my models.py looks like:
# models.py
...
content_panels =…

Damon
- 4,151
- 13
- 52
- 108
0
votes
1 answer
Override Wagtail delete confirmation message
I would like to override the delete message (to make it more informative, like “if you delete, you will lose 5 items belong to your account”).
My idea is whenever someone deletes my “Member”, it will also delete all the items belong to that member,…

Chris Dao
- 35
- 5
0
votes
1 answer
Is it possible to reorder the content_panels in Wagtail admin?
I am creating a Wagtail application where some models inherit fields from a base model. Unfortunately, these base fields are always displayed first in the form generated by Wagtail. For example:
class BaseModel(models.Model):
some_attribute =…

fwinterl
- 85
- 1
- 7
0
votes
1 answer
Support multi-site approval based workflow on wagtail
Objective
We would like to setup multi-site wagtail with approval chain.
Develop -> QA -> Release -> Production
Description
A develop / content editor goes to the wagtail admin and creates the content. Once done, sends the request for approval to…

Varun Goel
- 339
- 3
- 15