mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 23:02:19 +00:00
Style cleanup on the user lookup page
This commit is contained in:
@@ -34,7 +34,7 @@
|
|||||||
<section id="services">
|
<section id="services">
|
||||||
<h2>Service Accounts</h2>
|
<h2>Service Accounts</h2>
|
||||||
|
|
||||||
<table>
|
<table class="zebra-striped">
|
||||||
<tr><th>Service</th><th>Username</th><th>Active</th></tr>
|
<tr><th>Service</th><th>Username</th><th>Active</th></tr>
|
||||||
{% for acc in services %}
|
{% for acc in services %}
|
||||||
<tr><td>{{ acc.service }}</td>
|
<tr><td>{{ acc.service }}</td>
|
||||||
@@ -66,7 +66,7 @@
|
|||||||
<section id="recommendations">
|
<section id="recommendations">
|
||||||
<h2>Recommendations</h2>
|
<h2>Recommendations</h2>
|
||||||
|
|
||||||
<table>
|
<table class="zebra-striped">
|
||||||
<thead>
|
<thead>
|
||||||
<tr><th>Recommended Application</th><th>Recommendation Character</th><th>Recommendation Date</th></tr>
|
<tr><th>Recommended Application</th><th>Recommendation Character</th><th>Recommendation Date</th></tr>
|
||||||
</thead>
|
</thead>
|
||||||
@@ -114,7 +114,7 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
{% for acc in user.eveaccount_set.all %}
|
{% for acc in user.eveaccount_set.all %}
|
||||||
{% if acc.characters.count %}
|
{% if acc.characters.count %}
|
||||||
<tr><th colspan=2>Account {{ acc.api_user_id }}</th></tr>
|
<tr><th colspan="6">Account {{ acc.api_user_id }}</th></tr>
|
||||||
{% for char in acc.characters.all %}
|
{% for char in acc.characters.all %}
|
||||||
<tr><td><a href="{% url eve_api.views.eveapi_character char.id %}">{{ char.name }}</a></td>
|
<tr><td><a href="{% url eve_api.views.eveapi_character char.id %}">{{ char.name }}</a></td>
|
||||||
<td><a href="{% url eveapi-corporation char.corporation.id %}">{{ char.corporation }}</a></td>
|
<td><a href="{% url eveapi-corporation char.corporation.id %}">{{ char.corporation }}</a></td>
|
||||||
|
|||||||
Reference in New Issue
Block a user