diff --git a/website/templates/contributor_stats.html b/website/templates/contributor_stats.html index be18e23cc..08a5930bb 100644 --- a/website/templates/contributor_stats.html +++ b/website/templates/contributor_stats.html @@ -29,7 +29,7 @@ {% for username, prs in user_stats %} + class="py-4 px-6 font-semibold text-white whitespace-nowrap dark:text-gray-900"> {{ username }} diff --git a/website/templates/report.html b/website/templates/report.html index 020eacdf3..bfd938ac9 100644 --- a/website/templates/report.html +++ b/website/templates/report.html @@ -331,17 +331,14 @@

{% trans "ADD TEAM ME
+
{{ captcha_form.captcha }}
diff --git a/website/views.py b/website/views.py index 72d7ff5bf..6a884d7f7 100644 --- a/website/views.py +++ b/website/views.py @@ -879,7 +879,7 @@ def create_issue(self, form): obj.hunt = hunt obj.domain = domain - obj.is_hidden = bool(self.request.POST.get("private", False)) + # obj.is_hidden = bool(self.request.POST.get("private", False)) obj.save() if not domain_exists and (self.request.user.is_authenticated or tokenauth):