API SSO, Beautification of Tables, and more. (#562)

# One Thousandth Commit 🎉 🎈 🎆 🍾

* Allow requiring API ownership validation by SSO.
Closes #163

* Add Discourse group name length restrictions.

* Redirect after api addition/deletion of main character

* Correct admin searching for removed discourse_username field in AuthServicesInfo

* Correct admin function to sync user Discourse groups

* Beautify tables by removing borders and hiding when empty.

*Add buttons on dead-end pages to return to originating view.
This commit is contained in:
Adarnof
2016-10-27 23:28:00 -04:00
committed by GitHub
parent 4ea7fdeaf2
commit e77c162fa0
26 changed files with 313 additions and 135 deletions

View File

@@ -10,7 +10,7 @@
{% block content %}
<div class="col-lg-12">
{% if not STATE == MEMBER_STATE and not user.is_superuser %}
{% if not STATE == MEMBER_STATE %}
<h1 class="page-header text-center">{% trans "Personal Applications" %}
<div class="text-right">
{% if create %}
@@ -20,7 +20,8 @@
{% endif %}
</div>
</h1>
<table class="table table-bordered table-condensed">
{% if personal_apps %}
<table class="table table-condensed">
<tr>
<th class="text-center">{% trans "Username" %}</th>
<th class="text-center">{% trans "Corporation" %}
@@ -54,6 +55,7 @@
</tr>
{% endfor %}
</table>
{% endif %}
{% endif %}
{% if perms.auth.human_resources %}
<h1 class="page-header text-center">{% trans "Application Management" %}
@@ -71,6 +73,7 @@
<div class="tab-content">
<div id="pending" class="tab-pane fade in active">
<div class="panel-body">
{% if applications %}
<table class="table">
<tr>
<th class="text-center">{% trans "Date" %}</th>
@@ -107,10 +110,14 @@
</tr>
{% endfor %}
</table>
{% else %}
<div class="alert alert-warning text-center">No pending applications.</div>
{% endif %}
</div>
</div>
<div id="reviewed" class="tab-pane fade">
<div class="panel-body">
{% if finished_applications %}
<table class="table">
<tr>
<th class="text-center">{% trans "Date" %}</th>
@@ -147,6 +154,9 @@
</tr>
{% endfor %}
</table>
{% else %}
<div class="alert alert-warning text-center">No reviewed applications.</div>
{% endif %}
</div>
</div>
</div>