{# # GNU MediaGoblin -- federated, autonomous media hosting # Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . #} {%- extends "mediagoblin/base.html" %} {% block title -%} {% trans -%} Deauthorize applications {%- endtrans %} — {{ super() }} {%- endblock %} {% block mediagoblin_content %}

{% trans -%}Deauthorize Applications{%- endtrans %}

{% trans -%} These applications can access your GNU MediaGoblin account. Deauthorizing the application will prevent the application from accessing your account. {%- endtrans %}

{{ csrf_token }} {% if not applications %} {% trans -%}There are no applications authorized.{%- endtrans %} {% endif %} {% for application, access in applications %}
{% if application.get_client.logo_url %} {% else %} {% endif %}
{{ application.get_client.application_name }}

{% trans -%}Type:{%- endtrans %}   {{ application.get_client.application_type }}
{% trans -%}Authorized:{%- endtrans %}   {%- trans formatted_time=timesince(access.created) -%} {{ formatted_time }} ago {%- endtrans -%}

{% endfor %}
{% endblock %}