Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / billing.html @ bee0bf32

History | View | Annotate | Download (340 Bytes)

1
{% extends "im/account_base.html" %}
2

    
3
{% load filters %}
4

    
5
{% block page.body %}
6
    {% if data %}
7
        {{ data }}
8
    {% endif %}
9
    
10
   <form action="{% url astakos.im.views.billing %}">{% csrf_token %}
11
        {% for m in user.date_joined|months_since %}
12
            {{ m|date:"M Y" }}
13
        {% endfor %}
14
    </form>
15
{% endblock %}