{% extends 'ase/db/templates/layout.html' %}
{% macro atoms() %}
{% endmacro %}
{% macro cell() %}
  
    
      | Axis | x | y | z | Periodic | 
  
  
  {% for axis in dct.cell %}
    
      | {{ loop.index }}{% for a in axis %} | {{ a }}{% endfor %} | {{ row.pbc[loop.index0] }} | 
  {% endfor %}
  
  
    
      | Lengths:{% for L in dct.lengths %} | {{ L }}{% endfor %} | 
    
      | Angles:{% for a in dct.angles %} | {{ a }}{% endfor %} | 
  
{% endmacro %}
{% block title %}
Summary
{% endblock %}
{% set n1, n2, n3 = dct.size %}
{% block head %}
{% endblock %}
{% block navbar %}
  Back to search page
{% endblock %}
{% block content %}
  {{ dct.formula|safe }}
  
    
      
      
        
          
            
              {{ atoms() }}
            
 
            
              {{ cell() }}
            
 
            
          
        
      
      
        
          
            
              
                | Key | Description | Value | 
            
            
            {% for key, desc, val in dct.table %}
              
                | {{ key }} | {{ desc }} | {{ val|safe }} | 
            {% endfor %}
            
          
          
        
      
    
 
{% endblock content %}