Suggest url appendix from today's date instead of title

When creating (or changing) a new page, Kirby typically uses the page title to suggest a url appendix. Is it possible to change this behavior so it suggests today’s date as the url appendix? This should only work for a particular section (events) or template.

Not out of the box in Kirby 3, but there is this plugin:

Thanks texnixe - that worked in a roundabout way.

I just had to add the following to my event blueprint. Not defining the slug field causes the slug to become a timestamp:

addFields:
  title:
    label: Title
    type: text
    icon: title

This good enough for my purposes :slight_smile: