We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23bf20c commit 92afef7Copy full SHA for 92afef7
readthedocs/builds/views.py
@@ -168,6 +168,7 @@ def get_context_data(self, **kwargs):
168
context["project"] = self.project
169
170
build = self.get_object()
171
+ context["notifications"] = build.notifications.all()
172
173
if not build.notifications.filter(
174
message_id=BuildAppError.GENERIC_WITH_BUILD_ID
@@ -212,5 +213,5 @@ def get_context_data(self, **kwargs):
212
213
issue_url = scheme.format(**scheme_dict)
214
issue_url = urlparse(issue_url).geturl()
215
context["issue_url"] = issue_url
- context["notifications"] = build.notifications.all()
216
+
217
return context
0 commit comments