検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 116 for app (0.068 sec.)
Django 1.8 リリースノート — Django 4.0.6 ドキュメント 6477
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... get truncated. This prevents a database error when appending a unique suffix to a long filename that alre ... () method allows checking if a specific error has happened. If required_css_class is defined on a form, t ... e MultipleObjectMixin may now specify the ordering applied to the queryset by setting ordering or overrid ... ing several format modules from different reusable apps. It also allows overriding those custom formats i ...
https://man.plustar.jp/django/releases/1.8.html - [similar]
システムチェックフレームワーク — Django 4.0.6 ドキュメント 6477
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... you have inspected the cause of a warning and are happy to ignore it, you can hide specific warnings usin ... Error , register @register () def example_check ( app_configs , ** kwargs ): errors = [] # ... your chec ... k logic here if check_failed : errors . append ( Error ( 'an error' , hint = 'A hint.' , obj = ... checked_object , id = 'myapp.E001' , ) ) return errors The check function must ...
https://man.plustar.jp/django/topics/checks.html - [similar]
マイグレーション操作 — Django 4.0.6 ドキュメント 6401
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... o, use python manage.py makemigrations --empty yourappname , but be aware that manually adding schema-alt ... th class objects as well as strings in the format "appname.ModelName" if you want to depend on another mo ... instances to use. options should be a dictionary mapping option names to values. AlterModelManagers ¶ cl ... y - Django never sets database defaults and always applies them in the Django ORM code. 警告 On older dat ...
https://man.plustar.jp/django/ref/migration-operations.html - [similar]
Signals — Django 4.0.6 ドキュメント 6351
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... when connecting a receiver by specifying its full application label. For example, an Question model defi ... ned in the polls application could be referenced as 'polls.Question' . ... en dealing with circular import dependencies and swappable models. pre_init ¶ django.db.models.signals. p ... ar, non-existent values may be submitted, and will appear in pk_set , even though they have no effect on ...
https://man.plustar.jp/django/ref/signals.html - [similar]
The Django template language: for Python programmers — Django 4.0.6 ドキュメン... 6351
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... by DjangoTemplates . class Engine ( dirs = None , app_dirs = False , context_processors = None , debug = ... filesystem.Loader . It defaults to an empty list. app_dirs only affects the default value of loaders . S ... oaders.filesystem.Loader' 'django.template.loaders.app_directories.Loader' if and only if app_dirs is Tru ... e . If debug is False , these loaders are wrapped in django.template.loaders.cached.Loader . See L ...
https://man.plustar.jp/django/ref/templates/api.html - [similar]
Django の認証方法のカスタマイズ — Django 4.0.6 ドキュメント 6351
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... trying to access the functionality provided by the application (changing the status of tasks or closing t ... ecks if a user may close tasks: user . has_perm ( 'app.close_task' ) 既存の User モデルを拡張する ¶ 独自の ... ntrib.auth.models import User from my_user_profile_app.models import Employee # Define an inline admin de ... ーバーライドすることができます: AUTH_USER_MODEL = 'myapp.MyUser' This dotted pair describes the label of th ...
https://man.plustar.jp/django/topics/auth/customizing.html - [similar]
django.contrib.auth — Django 4.0.6 ドキュメント 6314
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... pecified permission, where perm is in the format "<app label>.<permission codename>" . (see documentation ... ed permissions, where each perm is in the format "<app label>.<permission codename>" . If the user is ina ... s any permissions in the given package (the Django app label). If the user is inactive, this method will ... hat have the given permission perm either in the "<app label>.<permission codename>" format or as a Permi ...
https://man.plustar.jp/django/ref/contrib/auth.html - [similar]
contrib packages — Django 4.0.6 ドキュメント 6264
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... g., 'django.contrib.redirects' ) to your INSTALLED_APPS setting and re-run manage.py migrate . Django の ... rib.auth contenttypes フレームワーク The flatpages app GeoDjango django.contrib.humanize メッセージフレー ... ムワーク django.contrib.postgres The redirects app The sitemap framework The "sites" framework The st ... aticfiles app The syndication feed framework admin ¶ The automat ...
https://man.plustar.jp/django/ref/contrib/index.html - [similar]
How to manage static files (e.g. images, JavaScript, CSS) — Django 4.0.6 ドキュ... 6226
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ngo.contrib.staticfiles が設定ファイルの INSTALLED_APPS に含まれていることを確認してください。 設定ファイ ... ます。 {% load static %} < img src = " {% static 'my_app/example.jpg' %} " alt = "My image" > アプリケーショ ... を作って静的ファイルを保存してください。例えば、 my_app/static/my_app/example.jpg となります。 ファイルを配 ... away with putting our static files directly in my_app/static/ (rather than creating another my_app subdi ...
https://man.plustar.jp/django/howto/static-files/index.html - [similar]
Django Deprecation Timeline — Django 4.0.6 ドキュメント 6226
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... will change from False to True . The default sitemap protocol for sitemaps built outside the context of ... dators.EmailValidator will be removed. The default_app_config module variable will be removed. Transactio ... eed will be removed in favor of content_type . The app_name argument to django.conf.urls.include() will b ... rt for setting a URL instance namespace without an application namespace will be removed. Field._get_val_ ...
https://man.plustar.jp/django/internals/deprecation.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT