{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% block title %}My Activity{% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block scripts %} {{ super() }} {% include "dependencies/common.html" %} {% include "dependencies/datatables.html" %} {% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}
My Mappings
{% for mapping in user.mappings %} {% endfor %}
Pathway 1 Name Resource 1 Pathway 2 Name Resource 2 Actions
{{ mapping.service_1_pathway_name }} {{ mapping.service_1_name|upper }} {{ mapping.service_2_pathway_name }} {{ mapping.service_2_name|upper }}
{{ mapping.count_up_votes() }}
{{ mapping.count_down_votes() }}
My Votes
{% for vote in user.votes %} {% endfor %}
Pathway 1 Name Resource 1 Pathway 2 Name Resource 2 Vote Type
{{ vote.mapping.service_1_pathway_name }} {{ vote.mapping.service_1_name|upper }} {{ vote.mapping.service_2_pathway_name }} {{ vote.mapping.service_2_name|upper }} {% if vote.type %}
{% else %}
{% endif %}
{% include "footer.html" %} {% endblock %}