mybuddy/dashboard/templates/cards/feeding_last_method.html

12 lines
297 B
HTML
Raw Normal View History

2017-10-29 03:01:39 +00:00
{% extends 'cards/base.html' %}
{% load i18n %}
{% block header %}{% trans "Last Feeding Method" %}{% endblock %}
{% block title %}
{% if feeding %}
<div class="display-4 text-center">{{ feeding.method }}</div>
{% else %}
{% trans "None" %}
{% endif %}
{% endblock %}