mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-13 22:32:15 +00:00
This is step one of cleaning up the eve_api application and replacing the working core with a more stable, celery based import queue. In addition we've added the ability to import a character just based on character ID, this should allow for populated corporate CEO positions on corps.
35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% load humanize %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{{ character.name }}</h1>
|
|
|
|
<img src="http://img.eve.is/serv.asp?s=256&c={{ character.id }}"/>
|
|
|
|
<img src="http://www.evecorplogo.net/logo.php?id={{ character.corporation.id }}" width="128" height="128" />
|
|
|
|
|
|
<ul>
|
|
<li>Race: {{ character.get_race_display }}</li>
|
|
<li>Gender: {{ character.get_gender_display }}</li>
|
|
<li>Corporation: {{ character.corporation.name }}</li>
|
|
<li>Joined Corporation: {{ character.corporation_date }}</li>
|
|
<li>Alliance: {{ character.corporation.alliance.name }}</li>
|
|
<li>Total SP: {{ character.total_sp|intcomma }}</li>
|
|
<li>Security Status: {{ character.security_status }}</li>
|
|
<li>Director: {{ character.director }}</li>
|
|
</ul>
|
|
|
|
<table>
|
|
<tr><th>Stat</th><th>Value</th></tr>
|
|
<tr><td>Intelligence</td><td> {{ character.attrib_intelligence }}</td></tr>
|
|
<tr><td>Memory</td><td>{{ character.attrib_memory }}</td></tr>
|
|
<tr><td>Charisma</td><td>{{ character.attrib_charisma }}</td></tr>
|
|
<tr><td>Perception</td><td>{{ character.attrib_perception }}</td></tr>
|
|
<tr><td>Willpower</td><td>{{ character.attrib_willpower }}</td></tr>
|
|
</table>
|
|
|
|
{% endblock %}
|