Last active
June 4, 2019 06:50
-
-
Save caramelchocolate/761c6a449d551c355a48a02ce6eb4c82 to your computer and use it in GitHub Desktop.
リスト表示で最大何件表示するか
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ref: https://docs.djangoproject.com/en/2.2/ref/contrib/admin/#django.contrib.admin.ModelAdmin.list_per_page | |
| from django.contrib import admin | |
| class fooAdmin(admin.ModelAdmin): | |
| # リスト表示で最大何件表示するか | |
| list_per_page = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment