{% extends 'base.html' %}
{% block title %}Account Balance{% endblock %}
{% block content %}
  
Account Balance: ${{ account_balance }}
 
  
    {% if has_payments %}
    
      
        
Payments
      
    
      
        
          
            | amount | 
            date | 
          
        
        
          {% for payment in payments %}
            
              | ${{ payment["dollars"] }} | 
              {{ payment["created"] }} | 
            
          {% endfor %}
        
      
     
    {% endif %}
    
  
  {% if has_vms %}
  
    
Capsuls Billed
  
  
    
      
        
          | id | 
          created | 
          deleted | 
          $/month | 
          months | 
          $ billed | 
        
      
      
        {% for vm in vms_billed %}
          
            | {{ vm["id"] }} | 
            {{ vm["created"] }} | 
            {{ vm["deleted"] }} | 
            ${{ vm["dollars_per_month"] }} | 
            {{ vm["months"] }} | 
            ${{ vm["dollars"] }} | 
          
        {% endfor %}
      
    
   
  
  {% endif %}
 
{% endblock %}
{% block pagesource %}/templates/create-capsul.html{% endblock %}