{% 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 %} {% import "meta/macros.html" as compath %} {% 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 }} {{ compath.stylize_plugin_name(STYLED_NAMES, mapping.service_1_name) }} {{ mapping.service_2_pathway_name }} {{ compath.stylize_plugin_name(STYLED_NAMES, mapping.service_2_name) }}
{{ 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 }} {{ compath.stylize_plugin_name(STYLED_NAMES, vote.mapping.service_1_name) }} {{ vote.mapping.service_2_pathway_name }} {{ compath.stylize_plugin_name(STYLED_NAMES, vote.mapping.service_2_name) }} {% if vote.type %}
{% else %}
{% endif %}
{% include "meta/footer.html" %} {% endblock %}