django admin画面で、サイト名はサイトを表示リンク先を変える Python

django admin画面で、サイト名はサイトを表示リンク先を変える

主にheader部分の変更だけど

admin.py において以下を追加
admin.site.site_header = Django 管理サイト名
admin.site.index_title = サイト管理名
admin.site.site_url

  2021-04-25 02:13:43

django管理画面から、認証と認可を非表示にする Python

django管理画面から、認証と認可を非表示にする

admin.pyに
admin.site.unregister(User)
admin.site.unregister(Group)
をセット

  2021-04-25 01:47:21

php環境から、他サーバにあるpostgresに接続するためにインストールしたもの postgres

php環境から、他サーバにあるpostgresに接続するためにインストールしたもの
なので、postgresのクライアント機能だけあればいい

docker環境だったので Dockerfileに以下を書いた
順番は、libpq-dev 入れた後に、pdo_pgsqlっぽい

RUN apt-get install -y libpq-dev

  2021-04-24 05:54:08

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.
コンテナ名と競合

  2021-04-24 05:40:10

postgres dbからddl を一括取得 postgres

postgresからddl を一括取得

# pg_dump -h ホスト -p 5432 -U ユーザ -d データベース -s > ddl.txt

  2021-04-23 10:31:12

djangoでstaticファイルの有効性を確認コマンド manage.py findstatic . Python

django
ファイルにアクセスできないときは
対象のstaticファイルが今有効なのかどうかを確認するコマンド

# python3 manage.py findstatic .

  2021-04-21 23:34:40

django 時間フォーマットの変更 Python

django 時間フォーマットの変更

■settings.py
# 時間フォーマット設定ファイル読み込み
FORMAT_MODULE_PATH = サイト.formats

■ファイル場所
settings.pyで
LANGUAGE_CODE = ja の場合
サイト/formats/ja/fo

  2021-04-21 23:28:55