mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-19 09:12:30 +02:00
* Added German Translations Translated using https://docs.djangoproject.com/en/1.9/topics/i18n/translation/ Added language drop down menu's for base.html, registration & login pages Known issues: * Translated items in whtracker>create signature remain translated when posted * No date/time localisation for Fleet/Structure timers * Added time locale Added date/time locale to *Structure Timers *Fleet Timers *Fleet timer form datetimepicker.js Fixed a bug where the bootstrap label didn't show up when making a structure timer using the translated form Missed some base.html translations * Small translation error Some obscure SRP strings went unnoticed for context review * FAT & Fleet-up German Translations + a fix in settings.py.example The only small thing not done is German Date/Time locale for Fleet-up * Compiled de/django.po
72 lines
3.0 KiB
HTML
72 lines
3.0 KiB
HTML
{% extends "public/base.html" %}
|
|
{% load bootstrap %}
|
|
{% load staticfiles %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}Alliance Auth{% endblock %}
|
|
{% block page_title %}FleetUp{% endblock page_title %}
|
|
|
|
{% block content %}
|
|
<div class="col-lg-12">
|
|
{% if perms.auth.corp_stats %}
|
|
<nav class="navbar navbar-default">
|
|
<div class="container-fluid">
|
|
<div class="navbar-header">
|
|
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
|
|
<span class="sr-only">{% trans "Toggle navigation" %}</span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
</button>
|
|
<a class="navbar-brand" href="#">Fleet-Up</a>
|
|
</div>
|
|
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
|
<ul class="nav navbar-nav">
|
|
<li><a href="/fleetup/">{% trans "Ops and Timers" %}</a></li>
|
|
<li><a href="/fleetup/doctrines/">{% trans "Doctrines" %}</a></li>
|
|
<li><a href="/fleetup/fittings/">{% trans "Fittings" %}</a></li>
|
|
|
|
<li class="active"><a href="/fleetup/characters/">{% trans "Characters" %} <span class="sr-only">(current)</span></a></li>
|
|
|
|
<li></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">{% trans "Characters registered on Fleet-Up.com" %}</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
<div class="col-lg-6">
|
|
<div class="table-responsive">
|
|
<table class="table table-condensed table-hover table-striped">
|
|
<tr>
|
|
<th class="col-md-1"></th>
|
|
<th class="col-md-1">{% trans "Character" %}</th>
|
|
<th class="col-md-1">{% trans "Corporation" %}</th>
|
|
<th class="col-md-1">Fleet-Up(id)</th>
|
|
</tr>
|
|
{% for char_name, user_id in member_list %}
|
|
<tr>
|
|
<td>
|
|
<img src="http://image.eveonline.com/Character/{{ user_id.char_id }}_32.jpg" class="img-circle">
|
|
</td>
|
|
<td>
|
|
<p>{{ user_id.char_name }}</p>
|
|
</td>
|
|
<td>
|
|
<p>{{ user_id.corporation }}</p>
|
|
</td>
|
|
<td>
|
|
<p>{{ user_id.user_id }}</p>
|
|
</td>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock content %} |