{% extends "public/content.html" %} {% block headtitle %} AVS Member Search {% endblock %} {% block title %}

AVS Member Search

{% if not searched %}

To check the AVS status of a member, please enter their name into the the form below, the system will confirm if they are AVS registered or not.


{% else %}

Any member returned in the search below has satisfied all conditions required to attain Accredited Vascular Scientist status. They have passed the required examinations and have completed the minimum number of vascular ultrasound investigations to satisfy the criteria required. They have maintained continuous professional development and have paid the appropriate annual membership fee. Detailed criteria for obtaining and maintaining AVS status can be reviewed at https://www.svtgbi.org.uk/education/.


{% endif %} {% endblock %} {% block content %} {% if searched %} {% if members %} {% for member in members %} {% if member.get_avs %}

{{ member }}

{% if member.get_avs %}This member is AVS registered{% else %}This member is not AVS registered{% endif %}

{% endif %} {% endfor %} {% else %}

Not Found

Sorry, we could not find a member matching your query. Please contact the CPD officers on cpd.avs@svtgbi.org.uk for more information regarding your query. {% endif %}


Search Again

{% endif %}
{% csrf_token %} {% include "public/partials/form.html" with form=search_form %}
{% endblock %}