tutor-deck/tutordeck/server/templates/plugin_store.html
Muhammad Labeeb 150400383f
feat: update layout and texts
* change layout and text

* change layout and text

* docs: fix make runserver command

* change logo
2025-04-16 14:48:02 +05:00

26 lines
630 B
HTML

{% extends "_base_header.html" %}
{% block page_title %}
Plugin Marketplace
{% endblock %}
{% block page_description %}
Explore, search, and install plugins to extend your Open edX platform.
{% 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 %}