From fa2701cc4c46d4f8d73ab3c73c314550d58e9319 Mon Sep 17 00:00:00 2001 From: jolheiser Date: Mon, 14 Feb 2022 21:12:23 -0600 Subject: [PATCH] Change questions Signed-off-by: jolheiser --- models.py | 4 ++-- templates/minecraft_manager/application_info.html | 4 ++-- utils.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/models.py b/models.py index 4fc573a..248f8cd 100644 --- a/models.py +++ b/models.py @@ -66,10 +66,10 @@ class UserSettings(models.Model): class Application(models.Model): username = models.CharField("Minecraft Username", max_length=20, unique=True) age = models.PositiveSmallIntegerField() - player_type = models.TextField("What type of player are you?", max_length=300) + player_type = models.TextField("What's your favorite thing to do in Minecraft?", max_length=300) ever_banned = models.BooleanField("Have you ever been banned?", default=False) ever_banned_explanation = models.TextField("If you were previously banned, will you share why?", max_length=300, blank=True, null=True) - reference = models.CharField("How did you find out about our server?", max_length=50, blank=True, null=True) + reference = models.CharField("How did you find out about us? Please give a website or player name, if applicable.", max_length=50, blank=True, null=True) read_rules = models.CharField("Have you read the rules?", max_length=10) accepted = models.NullBooleanField() date = models.DateTimeField(auto_now_add=True, blank=True, null=True) diff --git a/templates/minecraft_manager/application_info.html b/templates/minecraft_manager/application_info.html index 5b80d8e..8bdbf6f 100644 --- a/templates/minecraft_manager/application_info.html +++ b/templates/minecraft_manager/application_info.html @@ -9,7 +9,7 @@

Age: {{ application.age }}

Application Date: {{ application.date }}

-

Type Of Player:

+

Favorite Activity:

{{ application.player_type }}

{% if application.accepted is not null %}

Status: {{ application.status }}

@@ -26,7 +26,7 @@

Explanation: {{ application.ever_banned_explanation }}

{% endif %} {% if application.reference %} -

Reference: {{ application.reference }}

+

Referral: {{ application.reference }}

{% endif %}

Read The Rules: {{ application.read_rules }}

diff --git a/utils.py b/utils.py index 74a472f..d9af097 100644 --- a/utils.py +++ b/utils.py @@ -34,12 +34,12 @@ def build_application(application): embed.add_field(name="Application ID", value=application.id) embed.add_field(name="Username", value=application.username.replace("_", "\\_")) embed.add_field(name="Age", value=application.age) - embed.add_field(name="Type of Player", value=application.player_type) + embed.add_field(name="Favorite Activity", value=application.player_type) embed.add_field(name="Ever been banned", value=application.ever_banned) if application.ever_banned and application.ever_banned_explanation: embed.add_field(name="Reason for being banned", value=application.ever_banned_explanation) if application.reference: - embed.add_field(name="Reference", value=application.reference) + embed.add_field(name="Referral", value=application.reference) embed.add_field(name="Read the Rules", value=application.read_rules) embed.timestamp = application.date embed.add_field(name="Status", value=application.status)