{% from "stock_solutions/form.html" import stock_solution_add_form %} {% from 'chemicals/pane.html' import pane_details with context %}

{{ stock.chemical.label }}

Details

{% if current_user.has_permission('add-stock-solution') %} {% endif %}
ID {{ stock.id }}
Chemical {{ stock.chemical.label }}
Owner {{ stock.owner.username }}
Responsible for chemical {{ stock.chemical.responsible.username }}
Solvent {{ stock.solvent }}
Concentration {{ stock.concentration }}
Storage place {{ stock.storage_place }}
{% if stock.details %}

Details

{{ stock.details }}

{% endif %}
{{ pane_details( status='fade', pane_id='tab-chemical', chemical=stock.chemical, form=chemical_form ) }}