Questions tagged [wagtail-admin]
135 questions
0
votes
1 answer
Django to Wagtail: How to list my apps in the dashboard
I just followed this guide to convert my django project to wagtail. I have some applications there already (blog, portfolio etc). Now when I accessed the wagtail admin panel I didn't see the applications. Please how is this done in wagtail?

Adeolu Temitope Olofintuyi
- 131
- 10
0
votes
1 answer
Wagtail 2.11.2 internationalisation, translated pages not created automatically nor accesible
I'm testing Wagtail 2.11.2 new Content Internationalization approach:
I've setup two models HomePage and GenericPage.
I've setup Locales in settings.py and in Admin
USE_I18N = True
WAGTAIL_I18N_ENABLED = True
USE_L10N =…

Irugoy
- 3
- 2
0
votes
1 answer
Wagtail Form static fields & superuser-only page
I did not found any answer to this. So is there a way in Wagtail to have an AbstractEmailForm without AbstractFormField (for example, can I hard code them into AbstractEmailForm? I know that AbstractEmailField has some variables that Django…

itekhi
- 151
- 1
- 11
0
votes
1 answer
Wagtail 2.11 loads old Jquery version
So I upgraded wagtail on my production server, and for some reason jquery on my production server is 3.2.1
But on my local server it's as needed 3.5.1
Ran collectstatic, collectstatic --clear, cleared the cache, reinstalled wagtail, nothing…

itekhi
- 151
- 1
- 11
0
votes
2 answers
Wagtail set default page explorer view location for PageChooserBlock in admin
Way to browse pages from particular location in PageChooserBlock, like browse "sub pages or same level pages" from current editing page in which this block is used.
I observed that when any page is selected in PageChooserBlock then browsing starts…

Nei
- 1
- 1
0
votes
1 answer
Wrong FieldRowPanel
Is my FieldRowPanel wrong?
padding = FieldRowPanel([
FieldPanel(blocks.ChoiceBlock(
required=False, choices=PADDING_CHOICES, label="Отступ сверху")),
FieldPanel(blocks.ChoiceBlock(
required=False,…

Ekzo
- 103
- 1
- 9
0
votes
1 answer
Wagtail - is there a simple way of checking programmatically if a user has Wagtail admin access?
I would like to be able to check in my code whether a user has access to the Wagtail admin interface. I was imagining a field on the Django model like user.is_wagtail_user.
Is there an existing way to do this? Or is there something simple I can add?

MDalt
- 1,681
- 2
- 24
- 46
0
votes
0 answers
using Wagtail's site settings outside wagtail app
I have a Django project with a Wagtail app and I would like to use Wagtail Site settings outside Wagtail app but inside the Django project.
The BaseSetting model seems to be well definded, I can setup fields and modify them through the Wagtail admin…

blondelg
- 916
- 1
- 8
- 25
0
votes
1 answer
Wagtail: Change list_display for wagtailmenus
I'm using the wagtailmenus library with some custom models as described here. Nothing major, it just adds a language field:
class TranslatableFlatMenu(AbstractFlatMenu):
language = models.CharField(choices=TRANSLATION_CHOICES, help_text='For…

Snackoverflow
- 736
- 9
- 31
0
votes
1 answer
wagtail customized admin panels
is there a way of customizing my own admin panel , not in terms of styling. What i wish to achieve is a analytics tab , similar to wagalytics . The issue im having with wagalytics is that it is using google analytics , and google analytics is…

neowenshun
- 860
- 1
- 7
- 21
0
votes
1 answer
Height of FieldPanel for Rich Text Editor in Wagtail 2.8
Working on a site in Wagtail 2.8 and my model has a RichTextField.
It shows up in the admin editor but it defaults to a single line if their is no text in the field (as in when the model is created).
Is their a way to have the FieldPanel show up…

huntsfromshadow
- 1,085
- 8
- 12
0
votes
1 answer
Apply verbose_name (or similar property) to Wagtail form field tied to a ParentalKey
Does anyone know how I might go about updating the string "Landing page group" in the field on the left to "Translation group"?
I'm working on a Wagtail admin page for a Page model. We allow our marketing team to translate pages, and associate them …

commadelimited
- 5,656
- 6
- 41
- 77
-1
votes
1 answer
Django/Wagtail SnippetChooser template
1.How i can change/override SnippetChooser template ?
2.How i can add custom filters,queryset manipulations when choosing snippet ?
I can't find any info about this in documentation of wagtail

Kiyoshi
- 56
- 6
-1
votes
2 answers
How to add separate permission for a selected ModelAdmin in Django wagtail just like 'Page permissions'?
I am creating an application for teaching management in Wagtail. I create an AdminModal for 'Subjects'. I want to allow only selected user group to access a selected subject. Just like "Page permissions" in 'Add group'. Any idea how to do that?

Tharuka Ruwan
- 25
- 3
-1
votes
1 answer
Is there a way to view/edit source of richtext in Wagtail?
edit html option on Stackoverflow
Does wagtail CMS support the ability to edit rich text html code as seen in the screenshot?

sine1son
- 1
- 1