mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-18 17:00:17 +02:00
91 lines
3.1 KiB
HTML
91 lines
3.1 KiB
HTML
{% load staticfiles %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<title>Fleet participation</title>
|
|
|
|
<!-- Bootstrap Core CSS -->
|
|
<link href="{% static 'css/bootstrap.min.css' %}" rel="stylesheet">
|
|
<!-- Custom Fonts -->
|
|
<link href="{% static 'css/font-awesome.min.css' %}" rel="stylesheet" type="text/css">
|
|
<link href="{% static 'css/sb-admin-2.css' %}" rel="stylesheet">
|
|
{% block extra_css %}{% endblock extra_css %}
|
|
<style>
|
|
.grayiconecolor {
|
|
color: #505050;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body onload=CCPEVE.requestTrust('{{ DOMAIN }}')>
|
|
<div id="wrapper">
|
|
<!-- Navigation -->
|
|
|
|
<nav class="navbar navbar-inverse navbar-static-top" role="navigation">
|
|
|
|
<div class="navbar-header ">
|
|
<a class="navbar-brand " href="/dashboard/">
|
|
<div class="fa fa-cog fa-spin"></div>
|
|
{% if IS_CORP %}
|
|
{{ CORP_NAME }}
|
|
{% else %}
|
|
{{ ALLIANCE_NAME }}
|
|
{% endif %}
|
|
</a>
|
|
</div>
|
|
|
|
<!-- /.navbar-header -->
|
|
|
|
<ul class="nav navbar-top-links navbar-right">
|
|
{% if user.is_authenticated %}
|
|
<li><a href="{% url 'auth_logout_user' %}">Logout</a></li>
|
|
{% else %}
|
|
<li><a href="{% url 'auth_login_user' %}">Login</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
<!-- /.navbar-static-side -->
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
|
|
<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_dashboard' %}">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>
|
|
|
|
|
|
|
|
|
|
<script src="{% static 'js/jquery.min.js' %}"></script>
|
|
<script src="{% static 'js/jquery.datetimepicker.js' %}"></script>
|
|
<script src="{% static 'js/bootstrap.min.js' %}"></script>
|
|
</body>
|
|
</html>
|