معرفی شرکت ها


django-sort-order-field-1.2


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A Django model field for controlling sort order.
ویژگی مقدار
سیستم عامل -
نام فایل django-sort-order-field-1.2
نام django-sort-order-field
نسخه کتابخانه 1.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Dylan McCall
ایمیل نویسنده dylan@dylanmccall.ca
آدرس صفحه اصلی https://github.com/dylanmccall/django-sort-order-field
آدرس اینترنتی https://pypi.org/project/django-sort-order-field/
مجوز BSD License
================ Sort Order Field ================ Sort Order Field provides a Django model field for controlling sort order. The field includes an admin widget which makes it easy to arrange related models in an inline form. At the moment, the admin widget assumes it is the only field which controls ordering for its model, and it has no awareness of the sort direction. This is less powerful than other sort field libraries, but its design may be useful for certain situations. .. figure:: https://raw.githubusercontent.com/dylanmccall/django-sort-order-field/1.0/docs/images/sort-buttons.gif :alt: screencast showing sort buttons in action Easy to use sort buttons. .. figure:: https://raw.githubusercontent.com/dylanmccall/django-sort-order-field/1.0/docs/images/keyboard-navigation.gif :alt: screencast showing sort buttons in action Accessible keyboard navigation and non-sequential sort indexes. Installation ------------ Add "sort_order_field" to your INSTALLED_APPS setting:: INSTALLED_APPS = [ ... 'sort_order_field', ] Basic usage ----------- Add a SortOrderField to one of your models:: from django.db import models from sort_order_field import SortOrderField class Poll(models.Model): question = models.CharField(max_length=100) class PollOption(models.Model): class Meta: ordering = ('sort_order',) poll = models.ForeignKey('Poll', on_delete=models.CASCADE) sort_order = SortOrderField(_("Sort")) label = models.CharField(max_length=100) Add the sortable model to an inline model admin for your parent model:: from django.contrib import admin from . import models class PollOptionInline(admin.TabularInline): model = models.PollOption fields = ('sort_order', 'label',) @admin.register(models.Poll) class PollAdmin(admin.ModelAdmin): fields = ('question',) inlines = (PollOptionInline,) The sort order field will be rendered as a text field with JavaScript enhancements. When the user enters a new sort order value, the inline forms will be reorganized according to that value. The sort order fields will be bound by their initial values, which helps to avoid conflicts if the same objects appear in different inlines.


نحوه نصب


نصب پکیج whl django-sort-order-field-1.2:

    pip install django-sort-order-field-1.2.whl


نصب پکیج tar.gz django-sort-order-field-1.2:

    pip install django-sort-order-field-1.2.tar.gz