検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 192 for admin (0.029 sec.)
Django の admin サイト — Django 4.0.6 ドキュメント 10947
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Index | Modules « previous | up | next » Django の admin サイト ¶ Djangoのパワフルな特徴の1つは、自動的に生 ... 成されるadminインタフェースです。あなたのモデルクラスからメタデー ... あなたのサイトのコンテンツを操作することができます。adminサイトのオススメの使い方は、組織内で利用する管理ツー ... ルに利用を制限することです。adminサイトは、あなたのサイトのフロントエンドやその周辺を ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
システムチェックフレームワーク — Django 4.0.6 ドキュメント 9891
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tem checks are organized using the following tags: admin : Checks of any admin site declarations. async_sup ... as_view() instead of <view> . contrib app checks ¶ adminAdmin checks are all performed as part of the ad ... ag. The following checks are performed on any ModelAdmin (or subclass) that is registered with the admin si ... te: admin.E001 : The value of raw_id_fields must be a list o ...
https://man.plustar.jp/django/ref/checks.html - [similar]
django-admin と manage.py — Django 4.0.6 ドキュメント 9510
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | Index | Modules « previous | up | next » django-admin と manage.py ¶ django-admin は Django において管理 ... h Django project. It does the same thing as django-admin but also sets the DJANGO_SETTINGS_MODULE environme ... nts to your project's settings.py file. The django-admin script should be on your system path if you instal ... 常、単体の Django プロジェクトを用いる場合、 django-admin よりも manage.py の方が簡単に利用できます。もし複数 ...
https://man.plustar.jp/django/ref/django-admin.html - [similar]
はじめての Django アプリ作成、その 7 — Django 4.0.6 ドキュメント 8901
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... us on customizing Django's automatically-generated admin site that we first explored in Tutorial 2 . 困った ... は、FAQ の Getting Help セクションに進んでください。 admin フォームのカスタマイズ ¶ admin.site.register(Quest ... はデフォルトの形式でオブジェクトを表示できました。 admin フォームの表示方法や操作の仕方をデフォルトから変更 ... ォームでのフィールドの並び順を並べ替えてみましょう。 admin.site.register(Question) の行を以下のように置き換え ...
https://man.plustar.jp/django/intro/tutorial07.html - [similar]
Admin actions — Django 4.0.6 ドキュメント 8901
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ontents | Index | Modules « previous | up | next » Admin actions ¶ Django管理者の基本的な仕事は、一言で言え ... がら、この仕事は退屈です。 In these cases, Django's admin lets you write and register "actions" -- functions ... e list page. If you look at any change list in the admin, you'll see this feature in action; Django ships w ... h to override this behavior, you can override ModelAdmin.delete_queryset() or write a custom action which d ...
https://man.plustar.jp/django/ref/contrib/admin/actions.html - [similar]
Porting your apps from Django 0.96 to 1.0 — Django 4.0.6 ドキュメント 8901
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t's no longer valid and has been moved to the ModelAdmin class in admin.py . See the admin , below, for mor ... e details about changes to the admin. Remove core ¶ Remove the core argument from your ... of inline editing ) is handled differently by the admin interface now. You don't have to worry about inlin ... e editing until you get to the admin section, below. For now, remove all references to ...
https://man.plustar.jp/django/releases/1.0-porting-guide.html - [similar]
Django 1.4 release notes — Django 4.0.6 ドキュメント 8520
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ctory when you run the following command: django - admin . py startproject -- template =/ path / to / my_pr ... ument to both startapp and startproject : django - admin . py startapp myapp / path / to / new / app django ... - admin . py startproject myproject / path / to / new / pr ... ワード保存方法 . HTML5 doctype ¶ We've switched the admin and other bundled templates to use the HTML5 docty ...
https://man.plustar.jp/django/releases/1.4.html - [similar]
Django 1.4 documentation 8455
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... とは | 設定項目リファレンス 例外: 例外の概要 django-admin.py と manage.py: 概要 | 自作の管理コマンドを追加す ... go は玄人向きの実運用に耐える 管理インタフェー ス (admin interface) を自動的に生成します。 管理インタ フェー ... す。管理インタフェースの作成は簡単で、モデルクラスを admin に追 加するだけです: .. # In models.py... # models ... eporter = models . ForeignKey ( Reporter ) .. # In admin.py in the same directory... # 同じディレクトリの a ...
https://man.plustar.jp/django/contents.html - [similar]
Django の認証方法のカスタマイズ — Django 4.0.6 ドキュメント 8139
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ます。(バックエンドでこれを通過するため). Django の admin は Django の User object と強く結合しています。これ ... seBackend ): """ Authenticate against the settings ADMIN_LOGIN and ADMIN_PASSWORD. Use the login name and a ... hash of the password. For example: ADMIN_LOGIN = 'admin' ADMIN_PASSWORD = 'pbkdf2_sha256$30 ... ne , password = None ): login_valid = ( settings . ADMIN_LOGIN == username ) pwd_valid = check_password ( p ...
https://man.plustar.jp/django/topics/auth/customizing.html - [similar]
JavaScript customizations in the admin — Django 4.0.6 ドキュメント 8009
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ous | up | next » JavaScript customizations in the admin ¶ Inline form events ¶ You may want to execute som ... ipt when an inline form is added or removed in the admin change form. The formset:added and formset:removed ... your custom change_form.html template, extend the admin_change_form_document_ready block and add the event ... listener code: {% extends 'admin/change_form.html' %} {% load static %} {% block ad ...
https://man.plustar.jp/django/ref/contrib/admin/javascript.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT