add general header for workspace

This commit is contained in:
Muhammad Labeeb 2025-02-06 17:48:53 +05:00 committed by Régis Behmo
parent 24356e455d
commit 3b464fc1af
2 changed files with 20 additions and 2 deletions

View File

@ -1,6 +1,7 @@
{% extends "index.html" %}
{% extends "workspace_header_general.html" %}
{% block workspace_header %}Plugin Marketplace{% endblock %}
{% block page_title %}Plugin Marketplace{% endblock %}
{% block page_description %}View and install available plugins.{% endblock %}
{% block workspace_content %}
<form action="{{ url_for('plugins_update') }}" method="POST">

View File

@ -0,0 +1,17 @@
{% extends "index.html" %}
{% block workspace_header %}
<div class="info-container">
<div>
<div class="page-title">{% block page_title %}{% endblock %}</div>
<div class="page-description">{% block page_description %}{% endblock %}</div>
</div>
<div>
<div>{% block page_button %}{% endblock %}</div>
</div>
</div>
<div class="search-container">
<i class="fas fa-search search-icon"></i>
<input type="text" class="form-control search-input" placeholder="Search...">
</div>
{% endblock %}