Is it possible to obtain month and day information from a given date field?

Is it possible to obtain month and day information from a given date field?

Yes, you can use the Deluge date function getDay() and getMonth() to obtain the day and month information.

- getDay() returns the numerical day of the month for a particular year. The value returned will be between 1 and 31.
- getMonth() returns the numerical month of the year. The value returned is between 1 and 12.

Usage:
<date>.getDay()
<date>.getMonth()

where, <date> is a form field of type "date".

Refer here for more information on the other available Deluge date-time functions.