dbot-tripsit/tripsit/views/fs_list.jade
Georg 03326d7d78
Init
Signed-off-by: Georg <georg@lysergic.dev>
2021-08-24 21:35:25 +02:00

49 lines
2.2 KiB
Plaintext

extends ../layout
block content
script(type="text/javascript", src="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.4/jquery.dataTables.min.js")
p.text1
u
b ↳
a(href='/') Index
> Factsheets
p
table.table1
thead
tr
th.theader(style='width: 30%;')
| Name
th.theader(style='width: 70%;')
| Summary
table.table2
tbody.tbody1
-each drug in drugs
tr
td.ttext(style='width: 30%;')
a.boxed2(href='/factsheet/'+drug.name)
| #{drug.name}
if drug.categories
each kw in drug.categories
if kw == 'psychedelic'
span.label.label-warning(style='float:right;padding:3px;margin-right:5px;' data-placement="right") #{kw}
else if kw == 'benzodiazepine'
span.label.label-danger(style='background-color:#000;color:#FF0000;float:right;padding:3px;margin-right:5px;' data-placement="right") benzo
else if kw == 'stimulant'
span.label.label-info(style='float:right;padding:3px;margin-right:5px;' data-placement="right") stimulant
else if kw == 'dissociative'
span.label.label-default(style='background-color:purple;color:white;float:right;padding:3px;margin-right:5px;' data-placement="right") dissociative
else if kw == 'opioid'
span.label.label-success(style='float:right;padding:3px;margin-right:5px;' data-placement="right") opioid
else if kw == 'depressant'
span.label.label-danger(style='float:right;padding:3px;margin-right:5px;' data-placement="right") depressant
else
span.label.label-default(style='float:right;padding:3px;margin-right:5px;' data-placement="right") other
else
span.label.label-default(style='float:right;padding:3px;margin-right:5px;' data-placement="right") other
td.ttext(style='width: 70%;')
| #{drug.properties.summary}
p
p
b Factsheets on #{drugs.length} drugs