summaryrefslogtreecommitdiffstats
path: root/equations/templates/equations/symbol_detail.html
diff options
context:
space:
mode:
Diffstat (limited to 'equations/templates/equations/symbol_detail.html')
-rw-r--r--equations/templates/equations/symbol_detail.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/equations/templates/equations/symbol_detail.html b/equations/templates/equations/symbol_detail.html
new file mode 100644
index 0000000..85f59d8
--- /dev/null
+++ b/equations/templates/equations/symbol_detail.html
@@ -0,0 +1,15 @@
+{% extends "base.html" %}
+
+{% block title %}{{ object.name }}{% endblock %}
+
+{% block content %}
+<div style="width: 100%; text-align:center;">
+<img src="{{ object.get_render_url }}" style="border: none;" /></div>
+<br />
+<table width="100%">
+ <tr><td width="25%"><b>Raw LaTeX:</b></td><td><pre>{{ object.latex }}</pre></td></tr>
+{% if object.unicode %}
+ <tr><td><b>Unicode:</b></td><td>{{ object.unicode }}</td></tr>
+{% endif %}
+</table>
+{% endblock %}