27 lines
1,010 B
HTML
27 lines
1,010 B
HTML
{% extends "oauth2_provider/base.html" %}
|
|
{% load i18n %}
|
|
{% block content %}
|
|
<h3>
|
|
<a href="{% url 'oauth2_provider:developer' %}">Developer Console</a> | {% trans "Your applications" %}
|
|
</h3>
|
|
<div class="block-center">
|
|
{% if not request.user.mastodon_acct %}
|
|
<p>
|
|
Please <a href="{% url 'users:info' %}">connect to a Fediverse identity</a> before creating an application.
|
|
</p>
|
|
{% elif applications %}
|
|
<ul>
|
|
{% for application in applications %}
|
|
<li>
|
|
<a href="{{ application.get_absolute_url }}">{{ application.name }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<a class="btn btn-success" href="{% url "oauth2_provider:register" %}">{% trans "New Application" %}</a>
|
|
{% else %}
|
|
<p>
|
|
{% trans "No applications defined" %}. <a href="{% url 'oauth2_provider:register' %}">{% trans "Click here" %}</a> {% trans "if you want to register a new one" %}
|
|
</p>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock content %}
|