Skip to content

Commit

Permalink
Plugin detail landing page UI
Browse files Browse the repository at this point in the history
  • Loading branch information
Xpirix committed Sep 2, 2024
1 parent b38730b commit 6ba019e
Show file tree
Hide file tree
Showing 2 changed files with 206 additions and 174 deletions.
8 changes: 4 additions & 4 deletions qgis-app/plugins/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,17 +177,17 @@ class PackageUploadForm(forms.Form):
Single step upload for new plugins
"""

package = forms.FileField(
label=_("Plugin package"),
help_text=_("Please select the zipped file of the plugin."),
)
experimental = forms.BooleanField(
required=False,
label=_("Experimental"),
help_text=_(
"Please check this box if the plugin is experimental. <br/> Please note that this field might be overridden by metadata (if present)."
),
)
package = forms.FileField(
label=_("Plugin package"),
help_text=_("Please select the zipped file of the plugin."),
)

def clean_package(self):
"""
Expand Down
Loading

0 comments on commit 6ba019e

Please sign in to comment.