Django Botstrapからのテンプレート登録
■環境
windows10
Pycharm Community 2019.3
Python3.7
Django3.03
■前提条件
Djangoプロジェクト、アプリケーション作成していることを前提。以下参照
■できること
Bootstrap の無料テンプレートをDjangoで利用
■手順
① Bootstrapテンプレートのダウンロード
のThemaからテンプレート選択し、ダウンロード。
② Djangoプロジェクトにコピーする。
1)Djangoプロジェクト直下に、staticディレクトリ作成
2)そこに、「css」「imag」「vender」のみコピーする
③ 静的ファイルの配置場所を設定する。
このままでは、Djangoは配下ファイルの場所が把握できないので、
場所を、setting.pyに以下追加する。
STATICFILES_DIRS = (
os.path.join(BASE_DIR,'static'),
)
BASE_DIR は、Setting.pyの中で以下のように絶対パスで定義されている。
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
以上
Author And Source
この問題について(Django Botstrapからのテンプレート登録), 我々は、より多くの情報をここで見つけました https://qiita.com/oporimaster/items/d05b1ebe3befbc18e971著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .