{% extends 'header.html' %} {% load i18n %} {% load static %} {% load bootstrap3 %} {% bootstrap_css %} {% bootstrap_javascript %} {% bootstrap_messages %} {% block title %} {% trans "cuentas" %} {% endblock %} {% block content %} {% include 'topnav-logueado.html' %}
{% for message in messages %}
{{ message|safe }}
{% endfor %}

Cuentas

{% if services %} {% endif %}
{% if object_list %} {% for item in object_list %} {% csrf_token %} {% empty %} {% endfor %}
Cuenta Estado Cantidad de Ether Límite de Carga Acciones
{{ item.account.service.name }}
{{ item.account.address }}
{% if item.status.id == 1 %} {{ item.status.descripcion }} {% else %} {{ item.account.status.descripcion }} {% endif %} {{ item.account.balance }} Wei {{ item.account.tope }} Wei {% if item.status.id == 2 %} {% if item.account.status.descripcion == 'Sin verificar' %} {% else %} {% if item.account.status.descripcion == 'Satisfecho' or item.account.status.descripcion == 'Lista para gestion' %} {% endif %} {% endif %} {% endif %}
{% else %} {% endif %}
{% include 'footer.html' %} {% endblock %}