{% extends 'mastery/base.html' %} {% load i18n %} {% load humanize %} {% load evelinks %} {% load l10n %} {% translate "Elite" as status_elite_label %} {% translate "Almost elite" as status_almost_elite_label %} {% translate "Can fly" as status_can_fly_label %} {% translate "Almost fit" as status_almost_fit_label %} {% translate "Needs training" as status_needs_training_label %} {% translate "Fitting skill preview" as fitting_preview_label %} {% translate "Loading preview..." as loading_preview_label %} {% translate "Failed to load preview." as failed_preview_label %} {% block details %}
| {% translate "Main" %} | {% include 'mastery/partials/_summary_status_headers.html' with include_tooltips=1 include_chars_suffix=0 status_thresholds=status_thresholds %}|||||
|---|---|---|---|---|---|
|
{% if row.main_character %}
{{ row.main_character.character_name }}
{% blocktranslate with flyable=row.flyable_count total=row.active_count %}{{ flyable }}/{{ total }} flyable{% endblocktranslate %}
{{ row.user.username }}
{% blocktranslate with flyable=row.flyable_count total=row.active_count %}{{ flyable }}/{{ total }} flyable{% endblocktranslate %}
{% endif %}
|
{% include 'mastery/partials/_pilot_avatar_cell.html' with pilots=row.elite_pilots bucket='elite' row_user_id=row.user.id status_label=status_elite_label focus_filter='elite' focus_btn='success' fitting=fitting export_mode=export_mode selected_group=selected_group %} | {% include 'mastery/partials/_pilot_avatar_cell.html' with pilots=row.almost_elite_pilots bucket='almost_elite' row_user_id=row.user.id status_label=status_almost_elite_label focus_filter='almost_elite' focus_btn='primary' fitting=fitting export_mode=export_mode selected_group=selected_group %} | {% include 'mastery/partials/_pilot_avatar_cell.html' with pilots=row.can_fly_pilots bucket='can_fly' row_user_id=row.user.id status_label=status_can_fly_label focus_filter='can_fly_now' focus_btn='info' fitting=fitting export_mode=export_mode selected_group=selected_group %} | {% include 'mastery/partials/_pilot_avatar_cell.html' with pilots=row.almost_fit_pilots bucket='almost_fit' row_user_id=row.user.id status_label=status_almost_fit_label focus_filter='almost_required' focus_btn='warning' fitting=fitting export_mode=export_mode selected_group=selected_group %} | {% include 'mastery/partials/_pilot_avatar_cell.html' with pilots=row.needs_training_pilots bucket='needs_training' row_user_id=row.user.id status_label=status_needs_training_label focus_filter='needs_training' focus_btn='danger' fitting=fitting export_mode=export_mode selected_group=selected_group %} |
| {% translate "No active characters in the selected activity window." %} | |||||