{% extends 'dashboard_screen/base.html' %} {% block content %}

Update Price for Client:{{ client.business_legal_name }}

{% csrf_token %}
{% if exams %}
{% for exam in exams %} {% if forloop.counter|divisibleby:2 %} {% else %} {% endif %} {% endfor %}
Test Code CPT Code Case Type Default Price Price for this Client
{{ exam.exam_name }} {{ exam.cpt_name }} {{ exam.exam_casetype.case_type_name }} {{ exam.exam_default_price }}
USD
{{ exam.exam_name }} {{ exam.cpt_name }} {{ exam.exam_casetype.case_type_name }} {{ exam.exam_default_price }}
USD
{% endif %}
Back
{% endblock %}