検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 44 for Media (0.028 sec.)
フォームアセット (Media クラス) — Django 4.0.6 ドキュメント 16674
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... odules « previous | up | next » フォームアセット ( Media クラス) ¶ Rendering an attractive and easy-to-use ... は、定数とすることです。この方法を利用するには、内部 Media クラスに宣言します。内部クラスのプロパティで必要な ... class CalendarWidget ( forms . TextInput ): class Media : css = { 'all' : ( 'pretty.css' ,) } js = ( 'anim ... 読み込めるようになります。 この定数定義は、実行時に media という名前のウィジェットプロパティに変換されます。 ...
https://man.plustar.jp/django/topics/forms/media.html - [similar]
ファイルの管理 — Django 4.0.6 ドキュメント 9943
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... By default, Django stores files locally, using the MEDIA_ROOT and MEDIA_URL settings. The examples below as ... o . name 'cars/chevy.jpg' >>> car . photo . path '/media/cars/chevy.jpg' >>> car . photo . url 'http://medi ... o a path relative to the file storage's location ( MEDIA_ROOT if you are using the default FileSystemStorag ... me = 'cars/chevy_ii.jpg' >>> new_path = settings . MEDIA_ROOT + car . photo . name >>> # Move the file on t ...
https://man.plustar.jp/django/topics/files.html - [similar]
Built-in Views — Django 4.0.6 ドキュメント 9651
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... he most likely example is user-uploaded content in MEDIA_ROOT . django.contrib.staticfiles is intended for ... uploaded files, but you can have Django serve your MEDIA_ROOT by appending something like this to your URLc ... settings . DEBUG : urlpatterns += [ re_path ( r '^media/(?P<path>.*)$' , serve , { 'document_root' : setti ... ngs . MEDIA_ROOT , }), ] Note, the snippet assumes your MEDIA_ ...
https://man.plustar.jp/django/ref/views.html - [similar]
How to manage static files (e.g. images, JavaScript, CSS) — Django 4.0.6 ドキュ... 8698
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... を django.views.static.serve() ビューを利用している MEDIA_ROOT から利用できます。 この機能は本番環境で利用す ... static files を参照ください。 For example, if your MEDIA_URL is defined as media/ , you can do this by addi ... your URLconf goes here ... ] + static ( settings . MEDIA_URL , document_root = settings . MEDIA_ROOT ) 注釈 ... g mode and only if the given prefix is local (e.g. media/ ) and not a URL (e.g. http://media.example.com/ ) ...
https://man.plustar.jp/django/howto/static-files/index.html - [similar]
FAQ: Django を使う — Django 4.0.6 ドキュメント 8637
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ります: In your settings file, you'll need to define MEDIA_ROOT as the full path to a directory where you'd l ... hese files are not stored in the database.) Define MEDIA_URL as the base public URL of that directory. Make ... eField を追加し、 upload_to オプションを定義して、 MEDIA_ROOT のどのサブディレクトリにファイルをアップロード ... えます。 データベースに保存されるのは、ファイルの ( MEDIA_ROOT からの相対で表した) パスだけです。 URL を調べ ...
https://man.plustar.jp/django/faq/usage.html - [similar]
設定 — Django 4.0.6 ドキュメント 8529
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ies will not expire. A value of 0 causes keys to immediately expire (effectively "don't cache"). VERSION ¶ ... ations when BrokenLinkEmailsMiddleware is enabled. MEDIA_ROOT ¶ デフォルト値: '' (空文字列) Absolute filesy ... er-uploaded files . Example: "/var/www/example.com/media/" See also MEDIA_URL . 警告 MEDIA_ROOT and STATIC_ ... s introduced, it was common to rely or fallback on MEDIA_ROOT to also serve static files; however, since th ...
https://man.plustar.jp/django/ref/settings.html - [similar]
Django を Apache と mod_wsgi とともに使うには? — Django 4.0.6 ドキュメント 8129
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... one that's not also running Django -- for serving media. Here are some good choices: Nginx Apache の機能縮 ... が、 robots.txt 、 favicon.ico 、 /static/ 、そして /media/ の URL 空間は静的ファイルとして配信しています。他 ... .ico /path/to/mysite.com/static/favicon.ico Alias /media/ /path/to/mysite.com/media/ Alias /static/ /path/t ... ranted </Directory> <Directory /path/to/mysite.com/media > Require all granted </Directory> WSGIScriptAlias ...
https://man.plustar.jp/django/howto/deployment/wsgi/modwsgi.html - [similar]
モデルフィールドリファレンス — Django 4.0.6 ドキュメント 7960
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... グループに利用可能な選択肢を収集することもできます。 MEDIA_CHOICES = [ ( 'Audio' , ( ( 'vinyl' , 'Vinyl' ), ( ... del ( models . Model ): # file will be uploaded to MEDIA_ROOT/uploads upload = models . FileField ( upload_ ... to = 'uploads/' ) # or... # file will be saved to MEDIA_ROOT/uploads/2015/01/30 upload = models . FileFiel ... torage , the string value will be appended to your MEDIA_ROOT path to form the location on the local filesy ...
https://man.plustar.jp/django/ref/models/fields.html - [similar]
Django 1.3 release notes — Django 4.0.6 ドキュメント 7960
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... taticfiles -- to help developers handle the static media files (images, CSS, JavaScript, etc.) that are nee ... of Django, it was common to place static assets in MEDIA_ROOT along with user-uploaded files, and serve the ... m both at MEDIA_URL . Part of the purpose of introducing the stati ... runtests.py when using spatial database backends . MEDIA_URL and STATIC_URL must end in a slash ¶ Previousl ...
https://man.plustar.jp/django/releases/1.3.html - [similar]
Django 2.2 リリースノート — Django 4.0.6 ドキュメント 7899
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ow allowed on many-to-many relationships with intermediate models. The new through_defaults argument is use ... d to specify values for new intermediate model instance(s). Request と Response ¶ Added H ... has_perm('app.add_myproxymodel') . Merging of form Media assets ¶ Form Media assets are now merged using a ... duced results correctly by coincidence). Audit all Media classes for any missing dependencies. For example, ...
https://man.plustar.jp/django/releases/2.2.html - [similar]
PREV 1 2 3 4 5 NEXT