tutor-deck/tutordeck/server/templates/plugin_store.html
Muhammad Labeeb d2c41f4639
chore: change repo name
* automatically add issues to project board

* chore: rename app
2025-03-28 19:51:39 +05:00

26 lines
595 B
HTML

{% extends "_base_header.html" %}
{% block page_title %}
Plugin Marketplace
{% endblock %}
{% block page_description %}
View and install available plugins.
{% endblock %}
{% block page_button %}
<form action="{{ url_for('plugins_update') }}" method="POST">
<button class="" type="submit">Refresh</button>
</form>
{% endblock %}
{% set sidebar_active_tab = "plugin-marketplace" %}
{% set search_endpoint = url_for('plugin_store_list') %}
{% block workspace_content %}
<div id="plugins-list" class="store-plugins" hx-get="{{ search_endpoint }}" hx-trigger="load"></div>
{% endblock %}