{% extends 'mastery/base.html' %} {% load i18n %} {% load humanize %} {% load static %} {% load evelinks %} {% load l10n %} {% block details %}

Skill Mastery

Doctrine readiness overview for your characters ({{ character_count }} tracked).

Reset
Configured fittings in view
{{ configured_fittings_count }}
Flyable fittings{% if selected_character %} for {{ selected_character.eve_character.character_name }}{% endif %}
{{ flyable_fittings_count }}
Focused pilot
{% if selected_character %}{{ selected_character.eve_character.character_name }}{% else %}Best available pilot{% endif %}
{% for doctrine_card in doctrine_cards %}
{{ doctrine_card.doctrine.name }}
{{ doctrine_card.fittings|length }} fitting{{ doctrine_card.fittings|length|pluralize }} visible after filters
Doctrine
{% include 'mastery/partials/_summary_status_headers.html' with include_tooltips=1 include_chars_suffix=0 status_thresholds=status_thresholds %} {% for fit_card in doctrine_card.fittings %} {% endfor %}
Fitting Readiness
{{ fit_card.fitting.ship_type.name }} {{ fit_card.fitting.name }}
{{ fit_card.fitting.ship_type.name }}
{% if fit_card.is_configured %}
{% if fit_card.can_any_fly %}At least one pilot can fly{% else %}Training required{% endif %}
{% else %}
Leadership has not configured this fit yet
{% endif %}
{% if fit_card.is_configured and fit_card.selected_progress %}
{{ selected_character.eve_character.character_name }} {{ fit_card.selected_progress.status_label }}
Required {{ fit_card.selected_progress.required_pct }}%
Recommended {{ fit_card.selected_progress.recommended_pct }}%
{% elif fit_card.is_configured %}
Best required coverage {{ fit_card.best_required_pct }}%
Best recommended coverage {{ fit_card.best_recommended_pct }}%
{% else %} No pilot data available. {% endif %}
{% if fit_card.is_configured %}
{% for character_row in fit_card.elite_rows %} {% include 'mastery/partials/_pilot_avatar_button.html' with popover_id=character_row.popover_id character=character_row.character status_bucket=character_row.status_bucket status_label=character_row.progress.status_label progress=character_row.progress required_missing_sp=character_row.required_missing_sp recommended_missing_sp=character_row.recommended_missing_sp action_url=character_row.action_url action_btn='primary' action_label='Open pilot focus' is_selected=character_row.is_selected %} {% empty %}-{% endfor %}
{% else %}-{% endif %}
{% if fit_card.is_configured %}
{% for character_row in fit_card.almost_elite_rows %} {% include 'mastery/partials/_pilot_avatar_button.html' with popover_id=character_row.popover_id character=character_row.character status_bucket=character_row.status_bucket status_label=character_row.progress.status_label progress=character_row.progress required_missing_sp=character_row.required_missing_sp recommended_missing_sp=character_row.recommended_missing_sp action_url=character_row.action_url action_btn='primary' action_label='Open pilot focus' is_selected=character_row.is_selected %} {% empty %}-{% endfor %}
{% else %}-{% endif %}
{% if fit_card.is_configured %}
{% for character_row in fit_card.can_fly_rows %} {% include 'mastery/partials/_pilot_avatar_button.html' with popover_id=character_row.popover_id character=character_row.character status_bucket=character_row.status_bucket status_label=character_row.progress.status_label progress=character_row.progress required_missing_sp=character_row.required_missing_sp recommended_missing_sp=character_row.recommended_missing_sp action_url=character_row.action_url action_btn='primary' action_label='Open pilot focus' is_selected=character_row.is_selected %} {% empty %}-{% endfor %}
{% else %}-{% endif %}
{% if fit_card.is_configured %}
{% for character_row in fit_card.almost_fit_rows %} {% include 'mastery/partials/_pilot_avatar_button.html' with popover_id=character_row.popover_id character=character_row.character status_bucket=character_row.status_bucket status_label=character_row.progress.status_label progress=character_row.progress required_missing_sp=character_row.required_missing_sp recommended_missing_sp=character_row.recommended_missing_sp action_url=character_row.action_url action_btn='primary' action_label='Open pilot focus' is_selected=character_row.is_selected %} {% empty %}-{% endfor %}
{% else %}-{% endif %}
{% if fit_card.is_configured %}
{% for character_row in fit_card.needs_training_rows %} {% include 'mastery/partials/_pilot_avatar_button.html' with popover_id=character_row.popover_id character=character_row.character status_bucket=character_row.status_bucket status_label=character_row.progress.status_label progress=character_row.progress required_missing_sp=character_row.required_missing_sp recommended_missing_sp=character_row.recommended_missing_sp action_url=character_row.action_url action_btn='primary' action_label='Open pilot focus' is_selected=character_row.is_selected %} {% empty %}-{% endfor %}
{% else %} - {% endif %}
{% empty %}
No accessible doctrines found.
{% endfor %}
{% include 'mastery/partials/_pilot_popover_init_script.html' %} {% endblock %}