検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 359 for from (0.075 sec.)
GeoDjango Installation — Django 4.0.6 ドキュメント 5857
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s aren't available for your platform, installation from source may be required. When compiling the librari ... es from source, please follow the directions closely, espe ... t aware of the directory where the libraries built from source were installed. In general, the library pat ... . The typical library directory for software built from source is /usr/local/lib . Thus, /usr/local/lib ne ...
https://man.plustar.jp/django/ref/contrib/gis/install/index.html - [similar]
ファイルのアップロード — Django 4.0.6 ドキュメント 5857
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... onsider a form containing a FileField : forms.py ¶ from django import forms class UploadFileForm ( forms . ... empty. Most of the time, you'll pass the file data from request into the form as described in Binding uplo ... form . This would look something like: views.py ¶ from django.http import HttpResponseRedirect from djang ... o.shortcuts import render from .forms import UploadFileForm # Imaginary function ...
https://man.plustar.jp/django/topics/http/file-uploads.html - [similar]
Django 1.10 リリースノート — Django 4.0.6 ドキュメント 5794
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ll need to adapt old, custom middleware and switch from the MIDDLEWARE_CLASSES setting to the new MIDDLEWA ... where Safari caches redirects and prevents a user from being able to log out. Added the optional backend ... nstead of {% load staticfiles %} or {% load static from staticfiles %} ) and not worry about whether or no ... , backends can set DatabaseFeatures.can_return_ids_from_bulk_insert=True and implement DatabaseOperations. ...
https://man.plustar.jp/django/releases/1.10.html - [similar]
Django 3.1 release notes — Django 4.0.6 ドキュメント 5794
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... changes you'll want to be aware of when upgrading from Django 3.0 or earlier. We've dropped some features ... d transforms that were previously PostgreSQL-only: from django.db import models class ContactInfo ( models ... y as dynamically created ones. XRegExp is upgraded from version 2.0.0 to 3.2.0. jQuery is upgraded from ve ... rsion 3.4.1 to 3.5.1. Select2 library is upgraded from version 4.0.7 to 4.0.13. django.contrib.auth ¶ The ...
https://man.plustar.jp/django/releases/3.1.html - [similar]
Installing SpatiaLite — Django 4.0.6 ドキュメント 5768
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tabase. First, check if you can install SpatiaLite from system packages or binaries. For example, on Debia ... In any case, you should always be able to install from source . Installing from source ¶ GEOS and PROJ sh ... obtain an error, you will have to recompile SQLite from source. Otherwise, skip this section. To install f ... s, download the latest amalgamation source archive from the SQLite download page , and extract: $ wget htt ...
https://man.plustar.jp/django/ref/contrib/gis/install/spatialite.html - [similar]
Django 4.0 release notes — Django 4.0.6 ドキュメント 5768
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... changes you'll want to be aware of when upgrading from Django 3.2 or earlier. We've begun the deprecation ... in Django. This is the next step in the migration from using pytz to using zoneinfo . Django 3.2 allowed ... 0. zoneinfo is part of the Python standard library from Python 3.9. The backports.zoneinfo package is auto ... o author, can be used to assist with the migration from pytz . This package provides shims to help you saf ...
https://man.plustar.jp/django/releases/4.0.html - [similar]
マネージャ — Django 4.0.6 ドキュメント 5768
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ラス変数を定義します。たとえば、次のように書きます。 from django.db import models class Person ( models . Mo ... this custom Manager adds a method with_counts() : from django.db import models from django.db.models.func ... ects in the system. For example, using this model: from django.db import models class Book ( models . Mode ... relationship . For example, if the Question model from the tutorial had a deleted field and a base manage ...
https://man.plustar.jp/django/topics/db/managers.html - [similar]
The sitemap framework — Django 4.0.6 ドキュメント 5714
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... your Django site, add this line to your URLconf : from django.contrib.sitemaps.views import sitemap path ... entries. Here's how your sitemap class might look: from django.contrib.sitemaps import Sitemap from blog.m ... built outside the context of a request will change from 'http' to 'https' in Django 5.0. limit ¶ Optional. ... that specifies a date field for objects retrieved from the queryset . This will be used for the lastmod a ...
https://man.plustar.jp/django/ref/contrib/sitemaps.html - [similar]
ビルトインのクラスベースのジェネリックビュー — Django 4.0.6 ドキュメント 5688
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... こでは、以下のようなモデルを使用します。 # models.py from django.db import models class Publisher ( models . ... Field () 次に、ビューを定義しましょう。 # views.py from django.views.generic import ListView from books.mo ... 後に、このビューを URL にフックさせます。 # urls.py from django.urls import path from books.views import Pu ... ト変数の名前として使えるようになります。 # views.py from django.views.generic import ListView from books.mo ...
https://man.plustar.jp/django/topics/class-based-views/generic-display.html - [similar]
Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 5661
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... _user() というヘルパー関数を利用することです。 >>> from django.contrib.auth.models import User >>> user = ... プログラムでパスワードを変更することもできます: >>> from django.contrib.auth.models import User >>> u = Use ... が送出され、 None が返されます。以下は実装例です: from django.contrib.auth import authenticate user = aut ... 権限 can_publish は下記のように作成する事ができます: from myapp.models import BlogPost from django.contrib.a ...
https://man.plustar.jp/django/topics/auth/default.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT