diff --git a/app/templates/packages/view.html b/app/templates/packages/view.html index e0f03c01..99b45da5 100644 --- a/app/templates/packages/view.html +++ b/app/templates/packages/view.html @@ -20,17 +20,21 @@ {% else %} A release is required before this package can be approved. {% endif %} - {% elif not package.getDownloadRelease() %} - Please wait for the release to be approved. {% else %} - {% if package.checkPerm(current_user, "APPROVE_NEW") %} + {% if package.screenshots.count() == 0 %} + You should add at least one screenshot, but this isn't required.
+ {% endif %} + + {% if not package.getDownloadRelease() %} + Please wait for the release to be approved. + {% elif package.checkPerm(current_user, "APPROVE_NEW") %} You can now approve this package if you're ready.
{% else %} - This package needs to be approved before it can be found. + Please wait for the package to be approved. {% endif %} {% endif %}