58 lines
2.7 KiB
HTML
58 lines
2.7 KiB
HTML
{% extends "default.html" %}
|
|
{% block pagetitle %}API App Administration{% endblock %}
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col col-lg-8">
|
|
<div class="settings">
|
|
<div class="settings-section rounded">
|
|
<div class="d-lg-flex">
|
|
<div class="title w-lg-25">
|
|
<label>{{app.app_name}}</label>
|
|
</div>
|
|
<div class="body w-lg-100">
|
|
<label for="edit-{{app.id}}-author" class="mb-0 w-lg-25">User</label>
|
|
<input autocomplete="off" id="edit-{{app.id}}-author" class="form-control" type="text" name="name" value="{{app.author.username}}" readonly=readonly>
|
|
<input hidden name="formkey" value="{{v|formkey}}" class="notranslate" translate="no">
|
|
<label for="edit-{{app.id}}-name" class="mb-0 w-lg-25">App Name</label>
|
|
<input autocomplete="off" id="edit-{{app.id}}-name" class="form-control" type="text" name="name" value="{{app.app_name}}" readonly=readonly>
|
|
<label for="edit-{{app.id}}-redirect" class="mb-0 w-lg-25">Redirect URI</label>
|
|
<input autocomplete="off" id="edit-{{app.id}}-redirect" class="form-control" type="text" name="redirect_uri" value="{{app.redirect_uri}}" readonly="readonly">
|
|
<label for="edit-{{app.id}}-desc" class="mb-0 w-lg-25">Description</label>
|
|
<textarea rows="10" autocomplete="off" form="edit-app-{{app.id}}" class="form-control" name="description" id="edit-{{app.id}}-desc" maxlength="256" readonly="readonly">{{app.description}}</textarea>
|
|
</div>
|
|
</div>
|
|
<div class="footer">
|
|
<div class="d-flex">
|
|
{% if not app.client_id %}
|
|
<button type="button" class="btn btn-secondary ml-auto mr-2" data-nonce="{{g.nonce}}" data-onclick="postToastReload(this,'/admin/app/reject/{{app.id}}')">Reject</button>
|
|
<button type="button" class="btn btn-primary mr-0" data-nonce="{{g.nonce}}" data-onclick="postToastReload(this,'/admin/app/approve/{{app.id}}')">Approve</button>
|
|
{% else %}
|
|
<button type="button" class="btn btn-primary ml-auto" data-nonce="{{g.nonce}}" data-onclick="postToastReload(this,'/admin/app/revoke/{{app.id}}')">Revoke</button>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<ul class="nav post-nav py-2">
|
|
<li class="nav-item">
|
|
<a class="nav-link {% if request.path.endswith('/posts') %} active{% endif %}" href="{{request.path.replace('/comments','/posts')}}">
|
|
<div>Posts</div>
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link {% if request.path.endswith('/comments') %} active{% endif %}" href="{{request.path.replace('/posts','/comments')}}">
|
|
<div>Comments</div>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
|
|
{% if listing %}
|
|
{% include "post_listing.html" %}
|
|
{% elif comments %}
|
|
{% include "comments.html" %}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|