Skip to content

Commit 67c09a3

Browse files
fix: display empty revision and reduce catalog queries (#3435)
1 parent 552949d commit 67c09a3

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

cms/templates/catalog_page.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -289,10 +289,10 @@ <h1>{{ site_name }}—Professional Development, the MIT Way</h1>
289289
aria-labelledby="programs-tab"
290290
>
291291
{% endif %}
292-
<h1>PROGRAMS</h1>
293292
{% if not program_pages %}
294293
{% include "partials/catalog_empty.html" %}
295294
{% else %}
295+
<h1>PROGRAMS</h1>
296296
{% for program_page in program_pages %}
297297
{% include "partials/catalog_card.html" with courseware_page=program_page object_type="program" tab="program" %}
298298
{% endfor %}
@@ -314,10 +314,10 @@ <h1>PROGRAMS</h1>
314314
aria-labelledby="courses-tab"
315315
>
316316
{% endif %}
317-
<h1>COURSES</h1>
318317
{% if not course_pages %}
319318
{% include "partials/catalog_empty.html" %}
320319
{% else %}
320+
<h1>COURSES</h1>
321321
{% for course_page in course_pages %}
322322
{% include "partials/catalog_card.html" with courseware_page=course_page object_type="course" tab="course" %}
323323
{% endfor %}

courses/utils.py

+4-10
Original file line numberDiff line numberDiff line change
@@ -351,19 +351,13 @@ def get_catalog_languages():
351351
"""
352352
Returns the languages that are associated with courses or programs visible in the catalog
353353
"""
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.
355357
course_languages = (
356358
CourseLanguage.objects.filter(
357359
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__")),
367361
is_active=True,
368362
)
369363
.distinct()

0 commit comments

Comments
 (0)