Remove check for corputils permission

This permission was removed. Permissions are now enforced in the view.
This commit is contained in:
Adarnof 2016-03-02 22:39:16 -05:00
parent 60bcba25a6
commit a5ef9914b8

View File

@ -9,7 +9,6 @@
<div class="col-lg-12"> <div class="col-lg-12">
<h1 class="page-header text-center">Corporation Member Data</h1> <h1 class="page-header text-center">Corporation Member Data</h1>
{% if perms.auth.corputils %}
<div class="col-lg-12 container" id="example"> <div class="col-lg-12 container" id="example">
{% if corp %} {% if corp %}
<div class="row"> <div class="row">
@ -188,12 +187,5 @@
</div> </div>
{% endif %} {% endif %}
</div> </div>
{% else %}
{% if IS_CORP %}
<div class="alert alert-danger" role="alert">You are not in the corporation.</div>
{% else %}
<div class="alert alert-danger" role="alert">You are not in the alliance.</div>
{% endif %}
{% endif %}
</div> </div>
{% endblock content %} {% endblock content %}