34 lines
963 B
HTML
34 lines
963 B
HTML
{% extends "index.html" %}
|
|
|
|
{% block workspace_header %}
|
|
<div class="header-address">
|
|
<span>Plugin Marketplace</span>
|
|
<span>/ {{ plugin_name }}</span>
|
|
</div>
|
|
<div class="info">
|
|
<div class="info-container">
|
|
<div class="page-title">{{ plugin_name }}</div>
|
|
<div class="page-description">By {{ author_name }}</div>
|
|
</div>
|
|
<div class="page-button">
|
|
{% block page_button %}
|
|
{% if plugin_name in installed_plugins %}
|
|
<form action="{{ url_for('plugin_upgrade', name=plugin_name) }}" method="POST">
|
|
<button type="submit">Upgrade</button>
|
|
</form>
|
|
{% else %}
|
|
<form action="{{ url_for('plugin_install', name=plugin_name) }}" method="POST">
|
|
<button type="submit">Install</button>
|
|
</form>
|
|
{% endif %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
{% block plugin_description %}
|
|
<div>
|
|
{{ plugin_description | safe }}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% endblock %}
|