django admin画面で、サイト名はサイトを表示リンク先を変える Python
django admin画面で、サイト名はサイトを表示リンク先を変える
主にheader部分の変更だけど
admin.py において以下を追加
admin.site.site_header = Django 管理サイト名
admin.site.index_title = サイト管理名
admin.site.site_url
django管理画面から、認証と認可を非表示にする Python
django管理画面から、認証と認可を非表示にする
admin.pyに
admin.site.unregister(User)
admin.site.unregister(Group)
をセット
php環境から、他サーバにあるpostgresに接続するためにインストールしたもの postgres
php環境から、他サーバにあるpostgresに接続するためにインストールしたもの
なので、postgresのクライアント機能だけあればいい
docker環境だったので Dockerfileに以下を書いた
順番は、libpq-dev 入れた後に、pdo_pgsqlっぽい
RUN apt-get install -y libpq-dev
WARNING: Found orphan containers () for this project. If you removed or renamed this service in your compose file you can run this command with the --remove-orphans flag to clean it up. コンテナ名と競合してる場合にでるWARNINGメッセージ Python
WARNING: Found orphan containers () for this project. If you removed or renamed this service in your compose file you can run this command with the --remove-orphans flag to clean it up.
コンテナ名と競合
postgres dbからddl を一括取得 postgres
postgresからddl を一括取得
# pg_dump -h ホスト -p 5432 -U ユーザ -d データベース -s > ddl.txt
djangoでstaticファイルの有効性を確認コマンド manage.py findstatic . Python
django
ファイルにアクセスできないときは
対象のstaticファイルが今有効なのかどうかを確認するコマンド
# python3 manage.py findstatic .
django 時間フォーマットの変更 Python
django 時間フォーマットの変更
■settings.py
# 時間フォーマット設定ファイル読み込み
FORMAT_MODULE_PATH = サイト.formats
■ファイル場所
settings.pyで
LANGUAGE_CODE = ja の場合
サイト/formats/ja/fo