diff --git a/frontend/app/templates/search.html b/frontend/app/templates/search.html index 3df8d0e..614203d 100644 --- a/frontend/app/templates/search.html +++ b/frontend/app/templates/search.html @@ -28,10 +28,10 @@

{{ school.name }}

Grades {{ school.grade_min }}-{{ school.grade_max }} — {{ school.address }}

- +

Website: {{ school.website_url }}

- The mission of Jordan High School is to provide students with the opportunity to explore a body of knowledge, to develop academic, physical, and social skills, and to practice thinking and decision-making processes in an open and orderly environment. + {{ school.mission_statement }}

diff --git a/schools/serializers.py b/schools/serializers.py index 21ba777..1de6015 100644 --- a/schools/serializers.py +++ b/schools/serializers.py @@ -21,7 +21,8 @@ class Meta: model = schools_models.School fields = ('id', 'name', 'level', 'address', 'type', 'eligibility', 'location', 'preference', 'short_name', 'distance', - 'year_round', 'grade_min', 'grade_max', 'website_url') + 'year_round', 'grade_min', 'grade_max', 'website_url', + 'mission_statement',) def get_eligibility(self, obj): pt = self.context['point']