{ "info": { "author": "Alex Vakhitov", "author_email": "alex.vakhitov@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python" ], "description": "UiKit editor for Django\n=======================\n\nWhat's that\n-----------\n\n*uikit_editor* is a reusable application for Django, using `UiKit editor `_\n\n\nDependence\n----------\n\n- `Django >= 1.3`\n\nGetting started\n---------------\n\n- Install *uikit_editor*:\n\n```pip install django-uikit-editor```\n\n- Add `'uikit_editor'` to INSTALLED_APPS.\n\n\nUsing in model\n--------------\n\n.. code-block:: python\n\n from django.db import models\n from uikit_editor import UiKitField\n\n class Entry(models.Model):\n title = models.CharField(max_length=250, verbose_name=u'Title')\n text = UiKitField(verbose_name=u'Text')\n\nor use custom parametrs:\n\n.. code-block:: python\n\n text = UiKitField(\n verbose_name=u'Text',\n mode=\"tab\", # 'split', 'tab' default 'split'\n markdown=True #default False\n )\n\nUsing for only admin interface\n------------------------------\n\n.. code-block:: python\n\n from django import forms\n from uikit_editor import UiKitWidget\n from blog.models import Entry\n\n class EntryAdminForm(forms.ModelForm):\n class Meta:\n model = Entry\n widgets = {\n 'text': UiKitWidget(),\n }\n\n class EntryAdmin(admin.ModelAdmin):\n form = EntryAdminForm\n\n`UiKitWidget` takes the same parameters as `UiKitField`.\n\n\n\nContributing\n------------\n\n1. Fork it!\n2. Create your feature branch: `git checkout -b my-new-feature`\n3. Commit your changes: `git commit -am 'Add some feature'`\n4. Push to the branch: `git push origin my-new-feature`\n5. Submit a pull request =]", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/smidth/django-uikit-editor", "keywords": null, "license": "Simplified BSD", "maintainer": null, "maintainer_email": null, "name": "django-uikit-editor", "package_url": "https://pypi.org/project/django-uikit-editor/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/django-uikit-editor/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/smidth/django-uikit-editor" }, "release_url": "https://pypi.org/project/django-uikit-editor/0.0.1/", "requires_dist": null, "requires_python": null, "summary": "uikit_editor provides integration for UiKit htmleditor with Django", "version": "0.0.1" }, "last_serial": 4643713, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "ffb25757af18bd533e1fb8b9563f32fb", "sha256": "9f292dce01ff0ebb7c0c8a72cbac91f47aed120f212873bfc0d54bbff0a99e16" }, "downloads": -1, "filename": "django-uikit-editor-0.0.1.tar.gz", "has_sig": false, "md5_digest": "ffb25757af18bd533e1fb8b9563f32fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1182898, "upload_time": "2014-12-22T02:56:37", "url": "https://files.pythonhosted.org/packages/3f/61/72c02848b6e0400f5654dd06f1cd5af021202932eb75f7dece4b36af238d/django-uikit-editor-0.0.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ffb25757af18bd533e1fb8b9563f32fb", "sha256": "9f292dce01ff0ebb7c0c8a72cbac91f47aed120f212873bfc0d54bbff0a99e16" }, "downloads": -1, "filename": "django-uikit-editor-0.0.1.tar.gz", "has_sig": false, "md5_digest": "ffb25757af18bd533e1fb8b9563f32fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1182898, "upload_time": "2014-12-22T02:56:37", "url": "https://files.pythonhosted.org/packages/3f/61/72c02848b6e0400f5654dd06f1cd5af021202932eb75f7dece4b36af238d/django-uikit-editor-0.0.1.tar.gz" } ] }