Alice Ni
Alice Ni
@thibaudcolas Actually its not only important for redirects, but also for other models shown in Wagtail admin settings, like users, groups, sites and so on.
@FatumaA ```python class CustomDocument(AbstractDocument): record_date = models.DateField(default=datetime.date.today) admin_form_fields = Document.admin_form_fields + ( 'record_date', ) class HomePage(Page): body = RichTextField(blank=True) doc = models.ForeignKey( get_document_model_string(), on_delete=models.SET_NULL, blank=True, null=True ) content_panels = Page.content_panels...
Totally agree. Is there any plans to add the feature of menu in Wagtail?
May I know if this feature is enabled?
> I think the request here is to be able to pass it as a one-off setting for an individual `search()` call, though. The reason why the feature was requested...
> On my fork I have tests passing on Django 4.1-5.0 and recent python : https://github.com/olivierdalang/django-multiselectfield > > (haven't tested much so far, but with the tests and the demo...
> I found the solution I'm using > > * my device: m1 max, > * "react-native": "^0.77.0" > * "react-native-webview": "^13.13.2" > * device app : iPhone 16 pro...
> > source={{uri:'https://google.com'}} > style={{ > flex: 1, > width: '100%', > height: '100%' > }} > /> > @zerobox584 I tested your code with new created projects using react...
> the same issue is there in the newly create app with **npx @react-native-community/cli@latest init AwesomeProject** > > > "dependencies": { > > "react": "19.0.0", > > "react-native": "0.78.0", >...
@mensonones You really saved my day; thank you so much!!!