検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 111 for date (0.057 sec.)
Django の admin サイト — Django 4.0.6 ドキュメント 7019
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rt admin class AuthorAdmin ( admin . ModelAdmin ): date_hierarchy = 'pub_date' ModelAdmin. actions ¶ チェン ... ( actions_selection_counter = True )。 ModelAdmin. date_hierarchy ¶ date_hierarchy をモデル内の DateField ...DateTimeField の名前にセットすると、チェンジリストのペー ... ルダウンナビゲーションを含むようになります。 実装例: date_hierarchy = 'pub_date' __ ルックアップを使用して、 ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
Model index reference — Django 4.0.6 ドキュメント 7019
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ons. 例: Index ( Lower ( 'title' ) . desc (), 'pub_date' , name = 'lower_title_date_idx' ) creates an inde ... of the title field in descending order and the pub_date field in the default ascending order. Another exam ... to be marked as DETERMINISTIC . Django doesn't validate this but Oracle will error. This means that functi ... dex to be marked as IMMUTABLE . Django doesn't validate this but PostgreSQL will error. This means that fu ...
https://man.plustar.jp/django/ref/models/indexes.html - [similar]
Django の認証方法のカスタマイズ — Django 4.0.6 ドキュメント 6981
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... な定義です。 class MyUser ( AbstractBaseUser ): ... date_of_birth = models . DateField () height = models . ... FloatField () ... REQUIRED_FIELDS = [ 'date_of_birth' , 'height' ] 注釈 REQUIRED_FIELDS must c ... taff , is_active , is_superuser , last_login , and date_joined fields the same as Django's default user, y ... er model uses email as the username field, and has date_of_birth as a required field, then create_user sho ...
https://man.plustar.jp/django/topics/auth/customizing.html - [similar]
モデルフィールドリファレンス — Django 4.0.6 ドキュメント 6917
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Choices and the required concrete data type, e.g. date for use with DateField : class MoonLandings ( date ... time . date , models . Choices ): APOLLO_11 = 1969 , 7 , 20 , ... invalid , invalid_choice , unique , and unique_for_date . Additional error message keys are specified for ... nique implies the creation of an index. unique_for_date ¶ Field. unique_for_date ¶ Set this to the name of ...
https://man.plustar.jp/django/ref/models/fields.html - [similar]
モデル — Django 4.0.6 ドキュメント 6879
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... = models . CharField ( max_length = 100 ) release_date = models . DateField () num_stars = models . Integ ... oreignKey ( Group , on_delete = models . CASCADE ) date_joined = models . DateField () invite_reason = mod ... embership ( person = ringo , group = beatles , ... date_joined = date ( 1962 , 8 , 16 ), ... invite_reason ... s . create ( person = paul , group = beatles , ... date_joined = date ( 1960 , 8 , 1 ), ... invite_reason ...
https://man.plustar.jp/django/topics/db/models.html - [similar]
はじめての Django アプリ作成、その 7 — Django 4.0.6 ドキュメント 6803
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... stionAdmin ( admin . ModelAdmin ): fields = [ 'pub_date' , 'question_text' ] admin . site . register ( Que ... パターンに従ってください。 上の例では、「Publication date」フィールドの表示位置を「Question」フィールドよりも ... [ ( None , { 'fields' : [ 'question_text' ]}), ( 'Date information' , { 'fields' : [ 'pub_date' ]}), ] ad ... [ ( None , { 'fields' : [ 'question_text' ]}), ( 'Date information' , { 'fields' : [ 'pub_date' ], 'class ...
https://man.plustar.jp/django/intro/tutorial07.html - [similar]
モデルからフォームを作成する — Django 4.0.6 ドキュメント 6803
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ass Meta : ... model = Article ... fields = [ 'pub_date' , 'headline' , 'content' , 'reporter' ] # Creatin ... True の場合 empty_value が None にセットされます。 DateField DateField DateTimeField DateTimeField Decimal ... ( max_length = 3 , choices = TITLE_CHOICES ) birth_date = models . DateField ( blank = True , null = True ... odel = Author fields = [ 'name' , 'title' , 'birth_date' ] class BookForm ( ModelForm ): class Meta : mode ...
https://man.plustar.jp/django/topics/forms/modelforms.html - [similar]
PostgreSQL specific database functions — Django 4.0.6 ドキュメント 6778
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ctions import RandomUUID >>> Article . objects . update ( uuid = RandomUUID ()) TransactionNow ¶ class Tra ... nsactionNow ¶ Returns the date and time on the database server that the current t ... If you are not in a transaction it will return the date and time of the current statement. This is a compl ... django.db.models.functions.Now , which returns the date and time of the current statement. Note that only ...
https://man.plustar.jp/django/ref/contrib/postgres/functions.html - [similar]
Django 1.2 リリースノート — Django 4.0.6 ドキュメント 6778
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... previous versions of Django, every time you rendered a template, it would be reloaded from disk. In Django ... tting and form processing. That means, if enabled, dates and numbers on templates will be displayed using ... QuerySet methods are new. The GEOS interface was updated to use thread-safe C library functions when avail ... ned two new format characters: c to specify that a datetime value should be formatted in ISO 8601 format, ...
https://man.plustar.jp/django/releases/1.2.html - [similar]
How is Django Formed? — Django 4.0.6 ドキュメント 6639
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ease Django. Please, keep these instructions up-to-date if you make changes! The point here is to be descr ... ree to streamline or otherwise make changes, but update this document accordingly! オーバービュー ¶ There ... s: either a final release (e.g. 1.5) or a bugfix update (e.g. 1.5.1). Pre-releases: e.g. 1.6 alpha, beta, ... rrors. Draft a blog post and email announcement. Update version numbers and create the release package(s). ...
https://man.plustar.jp/django/internals/howto-release-django.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT