معرفی شرکت ها


django-uikit-editor-0.0.1


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

uikit_editor provides integration for UiKit htmleditor with Django
ویژگی مقدار
سیستم عامل -
نام فایل django-uikit-editor-0.0.1
نام django-uikit-editor
نسخه کتابخانه 0.0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Alex Vakhitov
ایمیل نویسنده alex.vakhitov@gmail.com
آدرس صفحه اصلی https://github.com/smidth/django-uikit-editor
آدرس اینترنتی https://pypi.org/project/django-uikit-editor/
مجوز Simplified BSD
UiKit editor for Django ======================= What's that ----------- *uikit_editor* is a reusable application for Django, using `UiKit editor <http://getuikit.com/docs/addons_htmleditor.html>`_ Dependence ---------- - `Django >= 1.3` Getting started --------------- - Install *uikit_editor*: ```pip install django-uikit-editor``` - Add `'uikit_editor'` to INSTALLED_APPS. Using in model -------------- .. code-block:: python from django.db import models from uikit_editor import UiKitField class Entry(models.Model): title = models.CharField(max_length=250, verbose_name=u'Title') text = UiKitField(verbose_name=u'Text') or use custom parametrs: .. code-block:: python text = UiKitField( verbose_name=u'Text', mode="tab", # 'split', 'tab' default 'split' markdown=True #default False ) Using for only admin interface ------------------------------ .. code-block:: python from django import forms from uikit_editor import UiKitWidget from blog.models import Entry class EntryAdminForm(forms.ModelForm): class Meta: model = Entry widgets = { 'text': UiKitWidget(), } class EntryAdmin(admin.ModelAdmin): form = EntryAdminForm `UiKitWidget` takes the same parameters as `UiKitField`. Contributing ------------ 1. Fork it! 2. Create your feature branch: `git checkout -b my-new-feature` 3. Commit your changes: `git commit -am 'Add some feature'` 4. Push to the branch: `git push origin my-new-feature` 5. Submit a pull request =]


نحوه نصب


نصب پکیج whl django-uikit-editor-0.0.1:

    pip install django-uikit-editor-0.0.1.whl


نصب پکیج tar.gz django-uikit-editor-0.0.1:

    pip install django-uikit-editor-0.0.1.tar.gz