555a4129a6864d186e78dcdcf95af562befea562
[chemdb.git] / chemdb / templates / chemdb / doc / door.tex
1 {% extends "chemdb/doc/base.tex" %}
2 {% load latex %}
3
4 {% block comment %}
5 % Paper for posting on the lab door
6 % as per 
7 %   http://www.drexelsafetyandhealth.com/lab-chem.htm#chpe7
8 % and 
9 %   href="http://www.drexelsafetyandhealth.com/lab-chem.htm#chpe10
10 {% endblock %}
11
12 {% block document %}
13 \thispagestyle{empty} % suppress page numbering
14 \sffamily % switch to sans-serif
15
16 \begin{center}
17
18 {\Huge
19  \firediamond{health={{ health }}, flammability={{ fire }},
20    reactivity={{ reactivity }}, {{ special|latex_special_args }} } }
21
22 \vspacer
23
24 \contfont
25 \begin{tabular}{r r l}
26 {% for title,instance_group in instance_groups %}
27 {% if instance_group %}
28 \multicolumn{3}{c}{\Tstrut {{ title }} } \\
29 {% for chemical_instance in instance_group %}
30 {{ chemical_instance.amount }} & {{ chemical_instance.id }} &
31   {{ chemical_instance.chemical.name|latex_safe|safe }} \\
32 {% endfor %}
33 {% endif %}
34 {% endfor %}
35 \end{tabular}
36
37 \vfill
38
39 {\headfont Contact}
40 \vskip 10pt
41 \contfont
42 \begin{tabular}{l}
43   W. Trevor King
44   215-895-1818 \\
45   Disque Hall 927 \\
46 \end{tabular}
47 \vspacer
48
49 Generated \today\ by ChemDB.
50
51 \end{center}
52 {% endblock %}