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