41 lines
1.2 KiB
HTML
41 lines
1.2 KiB
HTML
{% extends "base_header.html" %}
|
|
|
|
{% block page_title %}
|
|
My Plugins
|
|
{% endblock %}
|
|
|
|
{% block page_description %}
|
|
View all your installed plugins in one place.
|
|
{% endblock %}
|
|
|
|
{% block page_button %}
|
|
<button class="modal-button open-modal-button" type="button">Local Launch</button>
|
|
{% endblock %}
|
|
|
|
{% block model_icon %}
|
|
<img src="{{ url_for('static', filename='/img/Featured icon.svg') }}" alt="">
|
|
{% endblock %}
|
|
|
|
{% block modal_title %}
|
|
Run local launch for all plugins?
|
|
{% endblock %}
|
|
|
|
{% block modal_description %}
|
|
Running local launch will allow all changes to plugins to take effect. This could take a few minutes to complete.
|
|
{% endblock %}
|
|
|
|
{% block modal_footer %}
|
|
<button type="button" class="modal-button close-modal-button">Not Now</button>
|
|
<form method="POST" action="{{ url_for('cli_local_launch')}}">
|
|
<button class="modal-button run_modal_button" type="submit">Run Local Launch</button>
|
|
</form>
|
|
{% endblock %}
|
|
|
|
{% set sidebar_active_tab = "my-plugins" %}
|
|
|
|
{% set search_endpoint = url_for('installed_plugins_list') %}
|
|
|
|
{% block workspace_content %}
|
|
<div id="plugins-list" class="installed-plugins-list" hx-get="{{ url_for('installed_plugins_list')}}" hx-trigger="load"></div>
|
|
{% endblock %}
|