{"id":24452558,"url":"https://github.com/wtower/django-ckeditor-widget","last_synced_at":"2026-05-19T01:37:24.029Z","repository":{"id":57419294,"uuid":"93299162","full_name":"Wtower/django-ckeditor-widget","owner":"Wtower","description":"A CKEditor widget for Django that includes an admin mixin.","archived":false,"fork":false,"pushed_at":"2017-06-04T09:12:07.000Z","size":3,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-21T15:50:17.017Z","etag":null,"topics":["ckeditor","django","widget"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Wtower.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-06-04T08:07:11.000Z","updated_at":"2017-06-04T09:18:42.000Z","dependencies_parsed_at":"2022-09-08T22:11:35.729Z","dependency_job_id":null,"html_url":"https://github.com/Wtower/django-ckeditor-widget","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Wtower%2Fdjango-ckeditor-widget","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Wtower%2Fdjango-ckeditor-widget/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Wtower%2Fdjango-ckeditor-widget/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Wtower%2Fdjango-ckeditor-widget/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Wtower","download_url":"https://codeload.github.com/Wtower/django-ckeditor-widget/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243534081,"owners_count":20306458,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ckeditor","django","widget"],"created_at":"2025-01-21T01:15:47.361Z","updated_at":"2026-05-19T01:37:23.978Z","avatar_url":"https://github.com/Wtower.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"django-ckeditor-widget\n======================\n\nA CKEditor widget for Django that includes an admin mixin.\n\nHow to use\n----------\n\nInstall using pip::\n\n    pip install django-ckeditor-widget\n\n\nThen use as any other widget::\n\n    from django import forms\n    from ckeditor_widget.widgets import CKEditorWidget\n\n    class MyForm(forms.Form):\n        body = forms.TextField(widget=CKEditorWidget)\n\nhttps://docs.djangoproject.com/en/1.11/ref/forms/widgets/#specifying-widgets\n\nMake sure that CKEditor is provided in static files as ``ckeditor/ckeditor.js``.\n\nAdmin\n-----\n\nThe app conveniently provides an admin mixin that uses CKEditor for all text fields.\nSimply inherit from the mixin::\n\n    from django.contrib import admin\n    from ckeditor_widget.admin import CKEditorAdminMixin\n    from myapp import models\n\n    @admin.register(models.Product)\n    class ProductAdmin(CKEditorAdminMixin, admin.ModelAdmin):\n        pass\n\nAkternatively, specify ``formfield_overrides``::\n\n    formfield_overrides = {\n        models.TextField: {'widget': CKEditorWidget}\n    }\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwtower%2Fdjango-ckeditor-widget","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwtower%2Fdjango-ckeditor-widget","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwtower%2Fdjango-ckeditor-widget/lists"}