diff --git a/app/templates/pages/add_note.html b/app/templates/pages/add_note.html index 9c878e9..f5dfa1f 100644 --- a/app/templates/pages/add_note.html +++ b/app/templates/pages/add_note.html @@ -1,6 +1,6 @@ {% extends "layouts/base.html" %} -{% block title %}Add Personal Note - TryoutPro{% endblock %} -{% block page_title %}Add Personal Note{% endblock %} +{% block title %}{{ _('Add Personal Note') }} - TryoutPro{% endblock %} +{% block page_title %}{{ _('Add Personal Note') }}{% endblock %} {% block breadcrumb %} Home / Tryouts @@ -19,7 +19,7 @@ {% block content %}
-

Add Personal Note

+

{{ _('Add Personal Note') }}

{% if context_type == 'tryout' %}

Context: Tryout - {{ tryout.title }}

{% elif context_type == 'match' %} @@ -44,9 +44,9 @@ {% endif %}
- + + +
{% if context_type != 'tryout' and context_type != 'match' %}
- + - + {% for m in matches %} {% endfor %} @@ -82,9 +82,9 @@
- +
-
Schedule Tryout Match
-

Add a scrim/match inside an existing tryout

+
{{ _('Schedule Tryout Match') }}
+

{{ _('Add a scrim/match inside an existing tryout') }}

@@ -58,14 +58,14 @@
-
Schedule Team Match
-

Regular season match for an org team

+
{{ _('Schedule Team Match') }}
+

{{ _('Regular season match for an org team') }}

@@ -73,10 +73,10 @@
-
Create New Tryout
-

Create a brand new tryout event

+
{{ _('Create New Tryout') }}
+

{{ _('Create a brand new tryout event') }}

@@ -89,23 +89,23 @@