We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c587c8e commit 5d5f10eCopy full SHA for 5d5f10e
1 file changed
core/views.py
@@ -261,14 +261,12 @@ def get_v3_context_data(self, **kwargs):
261
libraries.append(
262
{
263
"name": lib.display_name_short,
264
- "url": self.request.build_absolute_uri(
265
- reverse(
266
- "library-detail",
267
- kwargs={
268
- "version_slug": version_slug,
269
- "library_slug": lib.slug,
270
- },
271
- )
+ "url": reverse(
+ "library-detail",
+ kwargs={
+ "version_slug": version_slug,
+ "library_slug": lib.slug,
+ },
272
),
273
"description": lib.description or "",
274
"categories": [cat.name for cat in lib.categories.all()],
0 commit comments