aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning
diff options
context:
space:
mode:
Diffstat (limited to 'alphabetlearning')
-rw-r--r--alphabetlearning/resources/forms.py3
-rw-r--r--alphabetlearning/templates/resources/resource_create.html2
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"