mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-19 01:02:30 +02:00
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 %}
|