Skip to content

Commit

Permalink
Add description for all plugins list
Browse files Browse the repository at this point in the history
  • Loading branch information
Xpirix committed Oct 25, 2024
1 parent a6b2976 commit 5744c81
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 0 additions & 1 deletion qgis-app/plugins/templates/plugins/plugin_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
{% block content %}
<h2 class="title is-4">{% if title %}{{title}}{% else %}{% trans "All plugins" %}{% endif %}</h2>
<div class="container rich tips mb-3">
<div class="icon">ℹ️</div>
<div class="cont coloring-1">
{% if description %}
<p class="is-size-5 has-text-weight-normal">{{description}}</p>
Expand Down
7 changes: 6 additions & 1 deletion qgis-app/plugins/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,12 @@
UserDetailsPluginsList.as_view(),
name="user_details",
),
url(r"^$", PluginsList.as_view(), name="approved_plugins"),
url(r"^$", PluginsList.as_view(
additional_context={
"title": _("All Plugins"),
"description": _("List of all approved plugins."),
}
), name="approved_plugins"),
url(
r"^my$",
login_required(
Expand Down

0 comments on commit 5744c81

Please sign in to comment.