{% extends 'silverstrike/base.html' %}
{% load i18n %}
{% load static %}
{% load widget_tweaks %}
{% block content_header %}
{{ recurrence.title|title }}
- Home
- Recurrences
- {{ recurrence.title|title }}
{% endblock %}
{% block content %}
{% trans 'Recurrence' %} | {{ recurrence.get_recurrence }} |
Next expected ocurrence | {{ recurrence.date }} |
{% trans 'Source' %} | {{ recurrence.src }} |
{% trans 'Destination' %} | {{ recurrence.dst }} |
{% trans 'Amount' %} | {{ recurrence.amount }} |
{% if recurrence.category %}
{% trans 'Category' %} |
{{ recurrence.category }}
|
{% endif %}
{% if recurrence.notes %}
{% trans 'Notes' %} | {{ recurrence.notes }} |
{% endif %}
Title |
Amount |
Date |
{% for transaction in recurrence.recurrences.all %}
{{ transaction.title }} |
{{ transaction.amount }} |
{{ transaction.date }} |
{% endfor %}
{% endblock %}