-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix missing static assets references resulting in errors while running the `collectstatic` management command.
- Loading branch information
1 parent
ca13de8
commit 1901deb
Showing
8 changed files
with
68 additions
and
1 deletion.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
assets/static/css/bootstrap-bootswatch-themes/darkly-theme.min.css
Large diffs are not rendered by default.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
assets/static/css/bootstrap-bootswatch-themes/flatly-theme.min.css
Large diffs are not rendered by default.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
assets/static/css/bootstrap-bootswatch-themes/slate-theme.min.css
Large diffs are not rendered by default.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
assets/static/css/bootstrap-bootswatch-themes/super-hero-theme.min.css
Large diffs are not rendered by default.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
assets/static/css/bootstrap-bootswatch-themes/yeti-theme.min.css
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<!--Customize DRF Browsable API --> | ||
{% extends "rest_framework/base.html" %} | ||
{% load static i18n compress %} | ||
|
||
{% block bootstrap_theme %} | ||
{% compress css %} | ||
<link rel="stylesheet" href="{% static 'css/bootstrap-bootswatch-themes/yeti-theme.min.css' %}" type="text/css"> | ||
{% endcompress %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters