forked from Github-Mirrors/canaille
78 lines
3.8 KiB
HTML
78 lines
3.8 KiB
HTML
{% extends theme('base.html') %}
|
|
|
|
{% block style %}
|
|
<link href="/static/datatables/jquery.dataTables.min.css" rel="stylesheet">
|
|
<link href="/static/datatables/dataTables.semanticui.min.css" rel="stylesheet">
|
|
{% endblock %}
|
|
|
|
{% block script %}
|
|
<script src="/static/datatables/jquery.dataTables.min.js"></script>
|
|
<script src="/static/datatables/dataTables.semanticui.min.js"></script>
|
|
<script src="/static/js/users.js"></script>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="ui segment">
|
|
<h2 class="ui center aligned header">
|
|
<div class="content">
|
|
{{ _("My consents") }}
|
|
</div>
|
|
<div class="sub header">
|
|
{% trans %}Consult and revoke the authorization you gave to websites.{% endtrans %}
|
|
</div>
|
|
</h2>
|
|
|
|
{% if consents %}
|
|
<div class="ui centered cards">
|
|
{% for consent in consents %}
|
|
{% set client = clients[consent.client] %}
|
|
<div class="ui card">
|
|
<div class="content">
|
|
{% if client.logo_uri %}
|
|
<img class="right floated mini ui image" src="{{ client.logo_uri }}">
|
|
{% endif %}
|
|
{% if client.client_uri %}
|
|
<a href="{{ client.client_uri }}" class="header">{{ client.client_name }}</a>
|
|
{% else %}
|
|
<div class="header">{{ client.client_name }}</div>
|
|
{% endif %}
|
|
<div class="meta">{% trans %}From:{% endtrans %} {{ consent.issue_date.strftime("%d/%m/%Y %H:%M:%S") }}</div>
|
|
{% if consent.revokation_date %}
|
|
<div class="meta">{% trans %}Revoked:{% endtrans %} {{ consent.revokation_date.strftime("%d/%m/%Y %H:%M:%S") }}</div>
|
|
{% endif %}
|
|
<div class="description">
|
|
<p>{% trans %}Has access to:{% endtrans %}</p>
|
|
<div class="ui list">
|
|
{% for scope in consent.scope %}
|
|
{% if scope not in ignored_scopes %}
|
|
{% if scope not in scope_details %}
|
|
<div class="item" title="{{ scope }}">{{ scope }}</div>
|
|
{% else %}
|
|
<div class="item" title="{{ scope }}">
|
|
<i class="{{ scope_details[scope][0] }} icon"></i>
|
|
<div class="content">{{ scope_details[scope][1] }}</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<a class="ui bottom attached button" href="{{ url_for('oidc.consents.delete', consent_id=consent.cn[0] ) }}">
|
|
<i class="remove icon"></i>
|
|
{% trans %}Remove access{% endtrans %}
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<div class="ui center aligned">
|
|
<div class="ui center aligned message">
|
|
<div class="content">
|
|
<p>{% trans %}You did not authorize applications yet.{% endtrans %}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|