{% extends "base_site.html" %}
{% load admin_static %}
{% block extrastyle %}
{% endblock %}
{% block title %}Spacegroup: {{ spacegroup.symbol }}{% endblock %}
{% block content %}
Spacegroup: {{spacegroup.symbol}}
Centering Vectors
{% for cv in spacegroup.centering_vectors.all %}
| {{ cv }} |
{% endfor %}
Symmetry operations
{% for op in spacegroup.sym_ops %}
| {{ op }} |
{% endfor %}
Wyckoff positions
| Symbol |
Multiplicity |
{% for site in spacegroup.wyckoff_sites %}
| {{site.symbol}} |
{{site.multiplicity}} |
{{site.position}} |
{% endfor %}
{% endblock %}
{% block sidebar %}
{% endblock %}