-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
325b0eb
commit dec3d30
Showing
4 changed files
with
31 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
include LICENSE | ||
include README.md | ||
recursive-include django_bootstrap_icons/static * | ||
recursive-exclude django_bootstrap_icons_sample | ||
exclude manage.py | ||
exclude CHANGELOG.md | ||
exclude sample-app-result.png | ||
recursive-exclude django_bootstrap_icons_sample |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -126,7 +126,6 @@ | |
# https://docs.djangoproject.com/en/3.2/howto/static-files/ | ||
|
||
STATIC_ROOT = os.path.join(BASE_DIR, 'django_bootstrap_icons_sample/static') | ||
print(STATIC_ROOT) | ||
STATIC_URL = '/static/' | ||
|
||
# Default primary key field type | ||
|
@@ -145,7 +144,3 @@ | |
<path d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z"/>\ | ||
</svg>' | ||
BS_ICONS_CUSTOM_PATH = 'custom-icons' | ||
|
||
BS_ICONS_BASE_URL = 'https://cdn.jsdelivr.net/npm/[email protected]/' | ||
|
||
|