My birthdays are stored with: {{ user.profile.dob }}, and I would like do display the birthday of users within the next 30 days. Here is my code:
{% for user in users %}
{% if user.profile.dob|date('m-d')> 'now'|date_modify('-30 day') %}
{{ user.name }} {{ user.surname }} {{ user.profile.dob }}<br>
{% else %}
<p>no birthdays this week</p>
{% endif %}
{% endfor %}