57 lines
1.5 KiB
HTML
57 lines
1.5 KiB
HTML
{% extends 'base.html' %}
|
|
{% block content %}
|
|
|
|
<div class="container">
|
|
<h1>Isotopes</h1>
|
|
<p>
|
|
Close by isotopes to be aware of (about 5mm distance)
|
|
</p>
|
|
<table class="table w-auto table-responsive-sm table-striped table-hover table-bordered">
|
|
<caption>
|
|
Table downloaded from <a href="https://easyspin.org/documentation/isotopetable.html">easyspin.org</a>
|
|
(2023-07-29 markusro)
|
|
</caption>
|
|
<thead class="table-dark">
|
|
<tr>
|
|
<th scope="col">N</th>
|
|
<th scope="col">Symbol</th>
|
|
<th scope="col">Name</th>
|
|
<th scope="col">f<sub>0</sub> in MHz</th>
|
|
<th scope="col">Spin</th>
|
|
<th scope="col">Nat. ab. in %</th>
|
|
<th scope="col">γ in MHz/T</th>
|
|
<th scope="col">γ in rad/T</th>
|
|
<th scope="col">Sens. in %(<sup>1</sup>H)</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
{% for attr in ans %}
|
|
<tr>
|
|
{% for i in attr %}
|
|
<td>{{ i }}</td>
|
|
{% endfor %}
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
</table>
|
|
<div class="row justify-content-left">
|
|
<div class="col">
|
|
{{ div_plot | safe }}
|
|
</div>
|
|
<div class="col">
|
|
{{ div_table | safe }}
|
|
</div>
|
|
</div>
|
|
<div>
|
|
{{ script_plot| safe }}
|
|
{{ script_table| safe }}
|
|
</div>
|
|
|
|
<a href="{% url 'home' %}">Go Home</a>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|