{
"info": {
"author": "Pablo Martin",
"author_email": "goinnn@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 4 - Beta",
"Framework :: Django",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3"
],
"description": ".. contents::\n\n============================\ndjango-inplaceedit-bootstrap\n============================\n\nInformation\n===========\n\n.. image:: https://badge.fury.io/py/django-inplaceedit-bootstrap.png\n :target: https://badge.fury.io/py/django-inplaceedit-bootstrap\n\n\nIntegration of `django-inplaceedit `_ with `bootstrap 3 `_\n\nIt is distributed under the terms of the `GNU Lesser General Public\nLicense `_.\n\nThis egg would not have been possible without the help of `Tyrdall `_\n\nRequirements\n============\n\n * `django-inplaceedit `_ (== 1.4.1)\n * `Bootstrap `_ (== 3.3.5)\n * `django-inplace-edit-extra-fields `_ (== 0.6.1, optional but recommended)\n * `django-bootstrap3-datetimepicker `_ (== 2.2.3, optional but recommended)\n\nDemo (this video use a very old version of django-inplaceedit and django-inplaceedit-extra-fields)\n==================================================================================================\n\nVideo Demo, of `django-inplaceedit `_, `django-inplaceedit-extra-fields `_ and `django-inlinetrans `_ (Set full screen mode to view it correctly)\n\n\n.. image:: https://github.com/django-inplaceedit/django-inplaceedit/raw/master/video-frame.png\n :target: http://www.youtube.com/watch?v=_EjisXtMy_Y?t=34s\n\n**Attention**: This demo is not a demo of this package, in this video there are not any inegration with bootstrap. Please to see a demo use the `testing django project `_.\n\nInstallation\n============\n\nAfter installing `django-inplaceedit egg`_ (1.4.1)\n\n\n.. _`django-inplaceedit egg`: https://django-inplaceedit.readthedocs.org/en/latest/install.html\n\n\nAfter installing `django-inplaceedit-extra-fields egg`_ (0.6.1, this is optional but recommended)\n\n\n.. _`django-inplaceedit-extra-fields egg`: https://pypi.python.org/pypi/django-inplaceedit-extra-fields#installation\n\nAnd after installing `django-bootstrap3-datetimepicker egg`_ (2.2.3, this is optional but recommended)\n\n\n.. _`django-bootstrap3-datetimepicker egg`: https://pypi.python.org/pypi/django-bootstrap3-datetimepicker\n\n\nIn your settings.py\n-------------------\n\n::\n\n INSTALLED_APPS = (\n 'django.contrib.auth',\n 'django.contrib.contenttypes',\n 'django.contrib.sessions',\n 'django.contrib.sites',\n 'django.contrib.admin',\n #.....................#\n 'inplaceeditform_bootstrap', # it is very important that this app is before that inplaceeditform and inplaceeditform_extra_fields\n 'inplaceeditform',\n 'inplaceeditform_extra_fields', # this is optional but recommended\n 'bootstrap3_datetime', # this is optional but recommended\n )\n\n ...\n # Optional, but recommended\n\n ADAPTOR_INPLACEEDIT = {}\n if 'inplaceeditform_extra_fields' in INSTALLED_APPS:\n ADAPTOR_INPLACEEDIT['tiny'] = 'inplaceeditform_extra_fields.fields.AdaptorTinyMCEField'\n # You can add the other adaptors of inplaceeditform_extra_fields\n # https://pypi.python.org/pypi/django-inplaceedit-extra-fields#installation\n if 'bootstrap3_datetime' in INSTALLED_APPS:\n ADAPTOR_INPLACEEDIT['date'] = 'inplaceeditform_bootstrap.fields.AdaptorDateBootStrapField'\n ADAPTOR_INPLACEEDIT['datetime'] = 'inplaceeditform_bootstrap.fields.AdaptorDateTimeBootStrapField'\n\n INPLACEEDIT_EDIT_TOOLTIP_TEXT = 'Please doubleclick to edit'\n\nIf you want, you can register these fields in your settings with different keys:\n\n::\n\n ...\n\n if 'bootstrap3_datetime' in INSTALLED_APPS:\n ADAPTOR_INPLACEEDIT['date_bootstrap'] = 'inplaceeditform_bootstrap.fields.AdaptorDateBootStrapField'\n ADAPTOR_INPLACEEDIT['datetime_bootstrap'] = 'inplaceeditform_bootstrap.fields.AdaptorDateTimeBootStrapField'\n\nAnd after that, to want use a specific adaptor you can pass it to the templatetag, e.g.:\n\n::\n\n {% inplace_edit \"content.field_name\" adaptor=\"date_bootstrap\" %}\n {% inplace_edit \"content.field_name\" adaptor=\"datetime_bootstrap\" %}\n\n\n\nWhy this code is not in django-inplaceedit?\n===========================================\n\n * This code depends on the bootstrap\n * This is a specific solution\n\n\nTesting\n=======\n\nExists a `testing django project `_. This project can use as demo project.\n\nThis project overwrites the default options of `django-inplaceedit `_ and a default option of django-inplaceedit-bootstrap\n\n::\n\n INPLACEEDIT_AUTO_SAVE = True\n INPLACEEDIT_EVENT = 'click'\n INPLACEEDIT_EDIT_TOOLTIP_TEXT = 'Click to edit' # This option is of django-inplaceedit-bootstrap\n\n\nDevelopment\n===========\n\nYou can get the bleeding edge version of django-inplaceedit-bootstrap by doing a clone\nof its git repository::\n\n git clone git@github.com:django-inplaceedit/django-inplaceedit-bootstrap.git\n\n\nReleases\n========\n\n0.2.1 (2015-08-30)\n------------------\n\n* Details\n\n0.2.0 (2015-08-30)\n------------------\n\n* Add Tooltip on Mouseover\n* Add form-class to the fields\n* Improvements in the testing project\n* Support to Django 1.7 and Django 1.8\n* Support to the last versions of the django-bootstrap3-datetimepicker\n* Upgrate bootstrap version\n\n0.1.1 (2013-09-17)\n------------------\n\n* Improvements in the testing project\n\n0.1.0 (2013-09-17)\n------------------\n\n* Improvements in the README file\n\n\n0.0.3 (2013-09-16)\n------------------\n\n * Add the AdaptorDateBootStrapField and AdaptorDateTimeBootStrapField\n * Customize the inplaceedit toolbar\n * Customize the file adaptor\n * Improvements in the fixtures of the testing project\n\n\n0.0.2 (2013-09-10)\n------------------\n\n * Set the variable INPLACEEDIT_EVENT in the settings to \"click\"\n * Fix typo errors in the README\n\n0.0.1 (2013-09-06)\n------------------\n\n * Initial version",
"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/django-inplaceedit/django-inplaceedit-bootstrap",
"keywords": "django,inplace,inline edit,bootstrap,inline form,inline,inplace edit,inplace form,ajax",
"license": "LGPL 3",
"maintainer": null,
"maintainer_email": null,
"name": "django-inplaceedit-bootstrap",
"package_url": "https://pypi.org/project/django-inplaceedit-bootstrap/",
"platform": "UNKNOWN",
"project_url": "https://pypi.org/project/django-inplaceedit-bootstrap/",
"project_urls": {
"Download": "UNKNOWN",
"Homepage": "https://github.com/django-inplaceedit/django-inplaceedit-bootstrap"
},
"release_url": "https://pypi.org/project/django-inplaceedit-bootstrap/0.2.1/",
"requires_dist": null,
"requires_python": null,
"summary": "Integration of django-inplaceedit and bootstrap",
"version": "0.2.1"
},
"last_serial": 1700398,
"releases": {
"0.0.1": [
{
"comment_text": "",
"digests": {
"md5": "61d72c80fd70bffd8890e158f29bd0f2",
"sha256": "f57b394ecd110d89e15d8979e9a93c3ed7082c9dee2eb322b55950421af82a1a"
},
"downloads": -1,
"filename": "django-inplaceedit-bootstrap-0.0.1.tar.gz",
"has_sig": false,
"md5_digest": "61d72c80fd70bffd8890e158f29bd0f2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4014,
"upload_time": "2013-09-06T12:19:13",
"url": "https://files.pythonhosted.org/packages/9a/bd/93a414dbbf4c78d6ade57e6772e1e191a59b939c76d773a3e0144896dc41/django-inplaceedit-bootstrap-0.0.1.tar.gz"
}
],
"0.0.2": [
{
"comment_text": "",
"digests": {
"md5": "6e06812ff78bcac30f7a3f085c27e89b",
"sha256": "94b7f5f44813e4a4f716738809b217ece01ce67ab28b25c9ed341222b84a5c52"
},
"downloads": -1,
"filename": "django-inplaceedit-bootstrap-0.0.2.tar.gz",
"has_sig": false,
"md5_digest": "6e06812ff78bcac30f7a3f085c27e89b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4171,
"upload_time": "2013-09-10T12:38:49",
"url": "https://files.pythonhosted.org/packages/28/54/aff310202f784333414232ec981090e3e50f4b1c1fc7cec66bef51743077/django-inplaceedit-bootstrap-0.0.2.tar.gz"
}
],
"0.0.3": [
{
"comment_text": "",
"digests": {
"md5": "81c6cb804f9bf366e0f60bddc41edd76",
"sha256": "18d9b53cd83ef396fef5477fe621326f20f1faf65fa8efeddad3a16e9a93565c"
},
"downloads": -1,
"filename": "django-inplaceedit-bootstrap-0.0.3.tar.gz",
"has_sig": false,
"md5_digest": "81c6cb804f9bf366e0f60bddc41edd76",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10539,
"upload_time": "2013-09-16T13:01:48",
"url": "https://files.pythonhosted.org/packages/3b/6f/589d14f0fa0f80c3096fba169792a279c43b1e1744ac4c108c007863fde9/django-inplaceedit-bootstrap-0.0.3.tar.gz"
}
],
"0.1.0": [
{
"comment_text": "",
"digests": {
"md5": "9c5d4c90611580cca31be04d28acf27d",
"sha256": "41112476c9e0d0db89e50fde4a078c797405d26567b94c50288c4f78648252d6"
},
"downloads": -1,
"filename": "django-inplaceedit-bootstrap-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "9c5d4c90611580cca31be04d28acf27d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10620,
"upload_time": "2013-09-17T08:40:27",
"url": "https://files.pythonhosted.org/packages/64/51/5dd59acf7fec32d3151737c7fb5c21c2ab0132ed069cb6247c12d5b78796/django-inplaceedit-bootstrap-0.1.0.tar.gz"
}
],
"0.1.1": [
{
"comment_text": "",
"digests": {
"md5": "9e2f3e2036a9a2029ba96d2204b5c6c4",
"sha256": "5ef0e5e8d6135f140b2acf405228b7cb96d3b8fef6636adef586fab24ba6cce9"
},
"downloads": -1,
"filename": "django-inplaceedit-bootstrap-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "9e2f3e2036a9a2029ba96d2204b5c6c4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10668,
"upload_time": "2013-09-17T11:36:42",
"url": "https://files.pythonhosted.org/packages/4c/3c/4d3cde28bab581550721c8e15e41552eaa95e1dab0cf911aa5a8de41d90e/django-inplaceedit-bootstrap-0.1.1.tar.gz"
}
],
"0.2.0": [
{
"comment_text": "",
"digests": {
"md5": "d5be3706977df646fa3e937fadd829d9",
"sha256": "fc8afb72c37d69aeb9552f4baf99ed7376e1f99c49e8471742a35f4e374efea7"
},
"downloads": -1,
"filename": "django-inplaceedit-bootstrap-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "d5be3706977df646fa3e937fadd829d9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11763,
"upload_time": "2015-08-30T16:25:40",
"url": "https://files.pythonhosted.org/packages/c8/04/b58a4947663500eec802b5c9fe3f7b3897bfbc4b1ab6f3fba60c64b3dfd8/django-inplaceedit-bootstrap-0.2.0.tar.gz"
}
],
"0.2.1": [
{
"comment_text": "",
"digests": {
"md5": "f6dccc001861275ddca3a076e337e685",
"sha256": "f83aec29de4cb3469083c34dbc1c423f1dab2faa871fd4c95fd7ef25e48cd4f6"
},
"downloads": -1,
"filename": "django-inplaceedit-bootstrap-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "f6dccc001861275ddca3a076e337e685",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10086,
"upload_time": "2015-08-30T16:41:55",
"url": "https://files.pythonhosted.org/packages/da/a0/74368702d6926cfdd0d489ed165943db49fa83ce67a7f853eef372443f09/django-inplaceedit-bootstrap-0.2.1.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "f6dccc001861275ddca3a076e337e685",
"sha256": "f83aec29de4cb3469083c34dbc1c423f1dab2faa871fd4c95fd7ef25e48cd4f6"
},
"downloads": -1,
"filename": "django-inplaceedit-bootstrap-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "f6dccc001861275ddca3a076e337e685",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10086,
"upload_time": "2015-08-30T16:41:55",
"url": "https://files.pythonhosted.org/packages/da/a0/74368702d6926cfdd0d489ed165943db49fa83ce67a7f853eef372443f09/django-inplaceedit-bootstrap-0.2.1.tar.gz"
}
]
}