File tree 2 files changed +6
-12
lines changed
2 files changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -289,10 +289,10 @@ <h1>{{ site_name }}—Professional Development, the MIT Way</h1>
289
289
aria-labelledby ="programs-tab "
290
290
>
291
291
{% endif %}
292
- < h1 > PROGRAMS</ h1 >
293
292
{% if not program_pages %}
294
293
{% include "partials/catalog_empty.html" %}
295
294
{% else %}
295
+ < h1 > PROGRAMS</ h1 >
296
296
{% for program_page in program_pages %}
297
297
{% include "partials/catalog_card.html" with courseware_page=program_page object_type="program" tab="program" %}
298
298
{% endfor %}
@@ -314,10 +314,10 @@ <h1>PROGRAMS</h1>
314
314
aria-labelledby ="courses-tab "
315
315
>
316
316
{% endif %}
317
- < h1 > COURSES</ h1 >
318
317
{% if not course_pages %}
319
318
{% include "partials/catalog_empty.html" %}
320
319
{% else %}
320
+ < h1 > COURSES</ h1 >
321
321
{% for course_page in course_pages %}
322
322
{% include "partials/catalog_card.html" with courseware_page=course_page object_type="course" tab="course" %}
323
323
{% endfor %}
Original file line number Diff line number Diff line change @@ -351,19 +351,13 @@ def get_catalog_languages():
351
351
"""
352
352
Returns the languages that are associated with courses or programs visible in the catalog
353
353
"""
354
-
354
+ # We will not add any filters for programs here because the visibility of the programs on catalog
355
+ # page depends on the visibility of the courses in the program. Also, We expect the program and
356
+ # course languages to be the same. So, we will only consider the course languages here.
355
357
course_languages = (
356
358
CourseLanguage .objects .filter (
357
359
Q (get_catalog_course_filter ("coursepage__" ))
358
- | Q (
359
- get_catalog_course_filter ("programpage__program__courses__coursepage__" )
360
- )
361
- | Q (get_catalog_course_filter ("externalcoursepage__" ))
362
- | Q (
363
- get_catalog_course_filter (
364
- "externalprogrampage__program__courses__externalcoursepage__"
365
- )
366
- ),
360
+ | Q (get_catalog_course_filter ("externalcoursepage__" )),
367
361
is_active = True ,
368
362
)
369
363
.distinct ()
You can’t perform that action at this time.
0 commit comments