{% extends 'base.html' %} {% block header %}

User Space

Welcome to your user space!

{% endblock %} {% block content %}

Profile Information

Email: {{ current_user.email }}

My compounds

View all the toxics you have searched in the following table!

{% for entry in user_entries[-10:][::-1] %} {% endfor %}
Index Compound name Chemical formula InchiKey
{{ loop.index }} {{ entry.compound_name }} {{ entry.chemical_formula }} {{ entry.inchi_key }}

Logout

Logout here.



{% endblock %}