recipes/backend/templates/view_recipe.html
2022-11-26 20:22:45 +01:00

15 lines
No EOL
337 B
HTML

{% extends "base_with_list.html" %}
{% block content %}
<h2 class="recipe-title" >{{ current_recipe.title }}</h2>
{% match current_recipe.description %}
{% when Some with (description) %}
<div class="recipe-description" >
{{ description|markdown }}
</div>
{% when None %}
{% endmatch %}
{% endblock %}