mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-13 22:40:16 +02:00
FAT uses ESI tokens to get character location/ship - closes #564 Pull corp memebrship data from ESI Additional permissions for non-api viewing. - migration to convert permissions from old users. Standardize EVE datasource responses. - allow different sources for EVE data types. Allow empty values for character alliance id and name Allow multiple corps and alliances to be considered 'members'
26 lines
1.3 KiB
HTML
26 lines
1.3 KiB
HTML
{% extends 'public/base.html' %}
|
|
{% block title %}Fleet Participation{% endblock %}
|
|
{% block page_title %}Fleet Participation{% endblock %}
|
|
<div class="col-lg-12">
|
|
<h1 class="page-header text-center">Character not found!</h1>
|
|
<div class="col-lg-12 container" id="example">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">{{ character_name }}</div>
|
|
<div class="panel-body">
|
|
<div class="col-lg-2 col-sm-2">
|
|
<img class="ra-avatar img-responsive" src="https://image.eveonline.com/Character/{{ character_id }}_128.jpg">
|
|
</div>
|
|
<div class="col-lg-10 col-sm-2">
|
|
<div class="alert alert-danger" role="alert">Character not registered!</div>
|
|
This character is not part of any registered API-key. You must go to <a href=" {% url 'auth_api_key_management' %}">API key management</a> and add an API with the character on before being able to click fleet attendance links.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|