diff options
author | Matthew Lemon <y@yulqen.org> | 2024-10-22 20:26:47 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-10-22 20:26:47 +0100 |
commit | b68e88b7643920caeb5d9d9cda8cdd08d51e10c9 (patch) | |
tree | c97edc4b77b97827b424e8bff582d7fa30f66a84 | |
parent | f07aeadf676053168f4a05b59e9deedd6424fa8c (diff) |
couple of minor tweaks
-rw-r--r-- | alphabetlearning/resources/forms.py | 3 | ||||
-rw-r--r-- | alphabetlearning/templates/resources/resource_create.html | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/alphabetlearning/resources/forms.py b/alphabetlearning/resources/forms.py index b0f7d76..c7eba4c 100644 --- a/alphabetlearning/resources/forms.py +++ b/alphabetlearning/resources/forms.py @@ -60,7 +60,8 @@ class ResourceCreateForm(forms.Form): widget=forms.Textarea, help_text=( "If you enter text here, it will be used in the 'card' description " - "box on the home page. Max 1000 characters." + "box on the home page. Max 1000 characters. " + "This should be much shorter than the description above." ), ) resource_type = forms.ModelChoiceField(queryset=ResourceType.objects.all()) diff --git a/alphabetlearning/templates/resources/resource_create.html b/alphabetlearning/templates/resources/resource_create.html index 374af93..c27222f 100644 --- a/alphabetlearning/templates/resources/resource_create.html +++ b/alphabetlearning/templates/resources/resource_create.html @@ -9,7 +9,7 @@ {% block content %} <div> <div class="form-container"> - <h1>Upload a new resource</h1> + <h1>Add a new resource</h1> <form action="{% url 'resources:create_resource' %}" method="post" |