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

{% block title %} Match Trial {{nct_id}} to Formularies {% endblock %}

{% endblock %} {% block content %}

Trial Summary

Short Title {{ summary['summary'][0][1] }}
Complete Title {{ summary['summary'][0][2] }}
Summary {{ summary['summary'][0][3] }}
Summary 2 {{ summary['summary'][0][4] }}
Indicated Drugs
    {% for drug in summary['indications'] %}
  • {{drug}}
  • {% endfor %}
Conditions
keywords {{ summary['keywords'] }}

Matching Classes

{% for formulary in potential_matches %}

{{ formulary }}

{% for row in potential_matches[formulary] %} {% endfor %}
Category Class Select
{{ row[1] }} {{ row[2] }}

If you've determined it belongs to another class {% endfor %}

{% endblock %}