You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 11, 2025. It is now read-only.
Given a template like this:
templates/base.html{% block empty %} {% endblock %} {% if let Some(var) = var %} {{ var }} {% endif %}The following code:
Gives an error:
Due to the (empty) match statement generated by the derive macro, even though the field
varis not necessary to render just theemptyblock.