Django admin CKEditor integration.

Overview

Django CKEditor

https://travis-ci.org/django-ckeditor/django-ckeditor.svg?branch=master

NOTICE: django-ckeditor 5 has backward incompatible code moves against 4.5.1.

File upload support has been moved to ckeditor_uploader. The urls are in ckeditor_uploader.urls, while for the file uploading widget you have to use RichTextUploadingField instead of RichTextField.

Django admin CKEditor integration. Provides a RichTextField, RichTextUploadingField, CKEditorWidget and CKEditorUploadingWidget utilizing CKEditor with image uploading and browsing support included.

This version also includes:

  1. support to django-storages (works with S3)
  2. updated ckeditor to version 4.14.1
  3. included all ckeditor language and plugin files to make everyone happy! ( only the plugins maintained by the ckeditor develops team )

Installation

Required

  1. Install or add django-ckeditor to your python path.

    pip install django-ckeditor
    
  2. Add ckeditor to your INSTALLED_APPS setting.

  3. Run the collectstatic management command: $ ./manage.py collectstatic. This will copy static CKEditor required media resources into the directory given by the STATIC_ROOT setting. See Django's documentation on managing static files for more info.

  4. CKEditor needs to know where its assets are located because it loads them lazily only when needed. The location is determined in the ckeditor-init.js script. and defaults to static/ckeditor/ckeditor/. This does not work all the time, for example when using ManifestStaticFilesStorage, any asset packaging pipeline or whatnot. django-ckeditor is quite good at automatically detecting the correct place even then, but sometimes you have to hardcode CKEDITOR_BASEPATH somewhere. This can be hardcoded in settings, i.e.:

    CKEDITOR_BASEPATH = "/my_static/ckeditor/ckeditor/"
    

    It is possible to override the admin/change_form.html template with your own if you really need to do this, i.e.:

    {% extends "admin/change_form.html" %}
    
    {% block extrahead %}
    <script>window.CKEDITOR_BASEPATH = '/my_static/ckeditor/ckeditor/';</script>
    {{ block.super }}
    {% endblock %}
    

    Of course, you should adapt this snippet to your needs when using CKEditor outside the admin app.

Required for using widget with file upload

  1. Add ckeditor_uploader to your INSTALLED_APPS setting.

  2. Add a CKEDITOR_UPLOAD_PATH setting to the project's settings.py file. This setting specifies a relative path to your CKEditor media upload directory. CKEditor uses Django's storage API. By default, Django uses the file system storage backend (it will use your MEDIA_ROOT and MEDIA_URL) and if you don't use a different backend you have to have write permissions for the CKEDITOR_UPLOAD_PATH path within MEDIA_ROOT, i.e.:

    CKEDITOR_UPLOAD_PATH = "uploads/"
    

    When using default file system storage, images will be uploaded to "uploads" folder in your MEDIA_ROOT and urls will be created against MEDIA_URL (/media/uploads/image.jpg).

    If you want to be able to have control over filename generation, you have to add a custom filename generator to your settings:

    # utils.py
    
    def get_filename(filename, request):
        return filename.upper()
    
    # settings.py
    
    CKEDITOR_FILENAME_GENERATOR = 'utils.get_filename'
    

    CKEditor has been tested with django FileSystemStorage and S3BotoStorage. There are issues using S3Storage from django-storages.

  3. For the default filesystem storage configuration, MEDIA_ROOT and MEDIA_URL must be set correctly for the media files to work (like those uploaded by the ckeditor widget).

  4. Add CKEditor URL include to your project's urls.py file:

    path('ckeditor/', include('ckeditor_uploader.urls')),
    
  5. Note that by adding those URLs you add views that can upload and browse through uploaded images. Since django-ckeditor 4.4.6, those views are decorated using @staff_member_required. If you want a different permission decorator (login_required, user_passes_test etc.) then add views defined in ckeditor.urls manually to your urls.py.

Optional - customizing CKEditor editor

  1. Add a CKEDITOR_CONFIGS setting to the project's settings.py file. This specifies sets of CKEditor settings that are passed to CKEditor (see CKEditor's Setting Configurations), i.e.:

    CKEDITOR_CONFIGS = {
        'awesome_ckeditor': {
            'toolbar': 'Basic',
        },
    }
    

    The name of the settings can be referenced when instantiating a RichTextField:

    content = RichTextField(config_name='awesome_ckeditor')
    

    The name of the settings can be referenced when instantiating a CKEditorWidget:

    widget = CKEditorWidget(config_name='awesome_ckeditor')
    

    By specifying a set named default you'll be applying its settings to all RichTextField and CKEditorWidget objects for which config_name has not been explicitly defined

    CKEDITOR_CONFIGS = {
        'default': {
            'toolbar': 'full',
            'height': 300,
            'width': 300,
        },
    }
    

    It is possible to create a custom toolbar

    CKEDITOR_CONFIGS = {
        'default': {
            'toolbar': 'Custom',
            'toolbar_Custom': [
                ['Bold', 'Italic', 'Underline'],
                ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'],
                ['Link', 'Unlink'],
                ['RemoveFormat', 'Source']
            ]
        }
    }
    

    If you want or need plugins which are not part of django-ckeditor's plugin set you may specify assets and plugins as follows:

        text = RichTextField(
            config_name='forum-post',
    
            # CKEDITOR.config.extraPlugins:
            extra_plugins=['someplugin'],
    
            # CKEDITOR.plugins.addExternal(...)
            external_plugin_resources=[(
                'someplugin',
                '/static/.../path-to-someplugin/',
                'plugin.js',
            )],
        )
    
    Alternatively, those settings can also be provided through
    ``CKEDITOR_CONFIGS``.
    

Optional for file upload

  1. All uploaded files are slugified by default. To disable this feature, set CKEDITOR_UPLOAD_SLUGIFY_FILENAME to False.

  2. Set the CKEDITOR_RESTRICT_BY_USER setting to True in the project's settings.py file (default False). This restricts access to uploaded images to the uploading user (e.g. each user only sees and uploads their own images). Upload paths are prefixed by the string returned by get_username. If CKEDITOR_RESTRICT_BY_USER is set to a string, the named property is used instead. Superusers can still see all images. NOTE: This restriction is only enforced within the CKEditor media browser.

  3. Set the CKEDITOR_BROWSE_SHOW_DIRS setting to True to show directories on the "Browse Server" page. This enables image grouping by directory they are stored in, sorted by date.

  4. Set the CKEDITOR_RESTRICT_BY_DATE setting to True to bucked uploaded files by year/month/day.

  5. You can set a custom file storage for CKEditor uploader by defining it under CKEDITOR_STORAGE_BACKEND variable in settings.

  6. You can set CKEDITOR_IMAGE_BACKEND to one of the supported backends to enable thumbnails in ckeditor gallery. By default, no thumbnails are created and full-size images are used as preview. Supported backends:

    • pillow: Uses Pillow
  7. With the pillow backend, you can change the thumbnail size with the CKEDITOR_THUMBNAIL_SIZE setting (formerly THUMBNAIL_SIZE). Default value: (75, 75)

  8. With the pillow backend, you can convert and compress the uploaded images to jpeg, to save disk space. Set the CKEDITOR_FORCE_JPEG_COMPRESSION setting to True (default False) You can change the CKEDITOR_IMAGE_QUALITY setting (formerly IMAGE_QUALITY), which is passed to Pillow:

    The image quality, on a scale from 1 (worst) to 95 (best). The default is 75. Values above 95 should be avoided; 100 disables portions of the JPEG compression algorithm and results in large files with hardly any gain in image quality.

    This feature is disabled for animated images.

Usage

Field

The quickest way to add rich text editing capabilities to your models is to use the included RichTextField model field type. A CKEditor widget is rendered as the form field but in all other regards the field behaves like the standard Django TextField. For example:

from django.db import models
from ckeditor.fields import RichTextField

class Post(models.Model):
    content = RichTextField()

For file upload support use RichTextUploadingField from ckeditor_uploader.fields.

Widget

Alternatively, you can use the included CKEditorWidget as the widget for a formfield. For example:

from django import forms
from django.contrib import admin
from ckeditor.widgets import CKEditorWidget

from post.models import Post

class PostAdminForm(forms.ModelForm):
    content = forms.CharField(widget=CKEditorWidget())
    class Meta:
        model = Post
        fields = '__all__'

class PostAdmin(admin.ModelAdmin):
    form = PostAdminForm

admin.site.register(Post, PostAdmin)

For file upload support use CKEditorUploadingWidget from ckeditor_uploader.widgets.

Overriding widget template

In Django 1.11 and 2.x for overriding ckeditor/widget.html you have two ways:

  1. Place ckeditor/widget.html in BASE_DIR/templates

    • Change FORM_RENDERER to TemplateSettings.
    FORM_RENDERER = 'django.forms.renderers.TemplatesSetting'
    
    • Include templates folder in DIRS
    TEMPLATES = [{
        ...
        'DIRS': [os.path.join(BASE_DIR, 'templates'), ],
        ...
    }]
    
    • Add 'django.forms' to INSTALLED_APPS.
  2. Place ckeditor/widget.html in your_app/templates and place 'your_app' before 'ckeditor' and 'ckeditor_uploader' in INSTALLED_APPS.

Outside of django admin

When you are rendering a form outside the admin panel, you'll have to make sure all form media is present for the editor to work. One way to achieve this is like this:

<form>
    {{ myform.media }}
    {{ myform.as_p }}
    <input type="submit"/>
</form>

or you can load the media manually as it is done in the demo app:

{% load static %}
<script type="text/javascript" src="{% static "ckeditor/ckeditor-init.js" %}"></script>
<script type="text/javascript" src="{% static "ckeditor/ckeditor/ckeditor.js" %}"></script>

When you need to render RichTextField's HTML output in your templates safely, just use {{ content|safe }}, Django's safe filter

Management Commands

Included is a management command to create thumbnails for images already contained in CKEDITOR_UPLOAD_PATH. This is useful to create thumbnails when using django-ckeditor with existing images. Issue the command as follows:

$ ./manage.py generateckeditorthumbnails

NOTE: If you're using custom views remember to include ckeditor.js in your form's media either through {{ form.media }} or through a <script> tag. Admin will do this for you automatically. See Django's Form Media docs for more info.

Using S3

See https://django-storages.readthedocs.org/en/latest/

NOTE: django-ckeditor will not work with S3 through django-storages without this line in settings.py:

AWS_QUERYSTRING_AUTH = False

If you want to use allowedContent

To get allowedContent to work, disable stylesheetparser plugin. So include this in your settings.py.:

CKEDITOR_CONFIGS = {
    "default": {
        "removePlugins": "stylesheetparser",
    }
}

Plugins:

django-ckeditor includes the following ckeditor plugins, but not all are enabled by default:

a11yhelp, about, adobeair, ajax, autoembed, autogrow, autolink, bbcode, clipboard, codesnippet,
codesnippetgeshi, colordialog, devtools, dialog, div, divarea, docprops, embed, embedbase,
embedsemantic, filetools, find, flash, forms, iframe, iframedialog, image, image2, language,
lineutils, link, liststyle, magicline, mathjax, menubutton, notification, notificationaggregator,
pagebreak, pastefromword, placeholder, preview, scayt, sharedspace, showblocks, smiley,
sourcedialog, specialchar, stylesheetparser, table, tableresize, tabletools, templates, uicolor,
uploadimage, uploadwidget, widget, wsc, xml

The image/file upload feature is done by the uploadimage plugin.

Restricting file upload

  1. To restrict upload functionality to image files only, add CKEDITOR_ALLOW_NONIMAGE_FILES = False in your settings.py file. Currently non-image files are allowed by default.
  2. By default the upload and browse URLs use staff_member_required decorator - ckeditor_uploader/urls.py - if you want other decorators just insert two urls found in that urls.py and don't include it.

Demo / Test application

If you clone the repository you will be able to run the ckeditor_demo application.

  1. pip install -r ckeditor_demo_requirements.txt
  2. Run python manage.py migrate
  3. Create a superuser if you want to test the widget in the admin panel
  4. Start the development server.

There is a forms.Form on the main page (/) and a model in admin that uses the widget for a model field. Database is set to sqlite3 and STATIC/MEDIA_ROOT to folders in temporary directory.

Running selenium test

You can run the test with python manage.py test ckeditor_demo (for repo checkout only) or with tox which is configured to run with Python 2.7 and 3.4.

Running code quality tests

Create a new virtualenv, install tox and run tox -e py27-lint to Flake8 (pep8 and other quality checks) tests or tox -e py27-isort to isort (import order check) tests

Troubleshooting

If your browser has problems displaying uploaded images in the image upload window you may need to change Django settings:

X_FRAME_OPTIONS = 'SAMEORIGIN'

More on https://docs.djangoproject.com/en/1.11/ref/clickjacking/#setting-x-frame-options-for-all-responses

Example ckeditor configuration

CKEDITOR_CONFIGS = {
    'default': {
        'skin': 'moono',
        # 'skin': 'office2013',
        'toolbar_Basic': [
            ['Source', '-', 'Bold', 'Italic']
        ],
        'toolbar_YourCustomToolbarConfig': [
            {'name': 'document', 'items': ['Source', '-', 'Save', 'NewPage', 'Preview', 'Print', '-', 'Templates']},
            {'name': 'clipboard', 'items': ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo']},
            {'name': 'editing', 'items': ['Find', 'Replace', '-', 'SelectAll']},
            {'name': 'forms',
             'items': ['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton',
                       'HiddenField']},
            '/',
            {'name': 'basicstyles',
             'items': ['Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat']},
            {'name': 'paragraph',
             'items': ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-',
                       'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', '-', 'BidiLtr', 'BidiRtl',
                       'Language']},
            {'name': 'links', 'items': ['Link', 'Unlink', 'Anchor']},
            {'name': 'insert',
             'items': ['Image', 'Flash', 'Table', 'HorizontalRule', 'Smiley', 'SpecialChar', 'PageBreak', 'Iframe']},
            '/',
            {'name': 'styles', 'items': ['Styles', 'Format', 'Font', 'FontSize']},
            {'name': 'colors', 'items': ['TextColor', 'BGColor']},
            {'name': 'tools', 'items': ['Maximize', 'ShowBlocks']},
            {'name': 'about', 'items': ['About']},
            '/',  # put this to force next toolbar on new line
            {'name': 'yourcustomtools', 'items': [
                # put the name of your editor.ui.addButton here
                'Preview',
                'Maximize',

            ]},
        ],
        'toolbar': 'YourCustomToolbarConfig',  # put selected toolbar config here
        # 'toolbarGroups': [{ 'name': 'document', 'groups': [ 'mode', 'document', 'doctools' ] }],
        # 'height': 291,
        # 'width': '100%',
        # 'filebrowserWindowHeight': 725,
        # 'filebrowserWindowWidth': 940,
        # 'toolbarCanCollapse': True,
        # 'mathJaxLib': '//cdn.mathjax.org/mathjax/2.2-latest/MathJax.js?config=TeX-AMS_HTML',
        'tabSpaces': 4,
        'extraPlugins': ','.join([
            'uploadimage', # the upload image feature
            # your extra plugins here
            'div',
            'autolink',
            'autoembed',
            'embedsemantic',
            'autogrow',
            # 'devtools',
            'widget',
            'lineutils',
            'clipboard',
            'dialog',
            'dialogui',
            'elementspath'
        ]),
    }
}
Comments
  • ckeditor is incompatible with ManifestStaticFilesStorage

    ckeditor is incompatible with ManifestStaticFilesStorage

    Hi guys, i have now an error with django-ckeditor 4.4.8 in my web server.

    The webserver is webfaction, and my problem is the next: I was using ckeditor in my page and work's fine, i have 4.4.7 and then updated for 4.4.8, i don't remember if i restarted the server but ckeditor works fine. Then, i restarted the server and i try to used ckeditor but i couldn't see anything, see: granproblemackeditor

    I tried all things that i think, re collect static files, re put ckeditor urls in urls.py, all, but, nothing working.

    But, in local server work fine, shure, doesn't used collecstatic, don't need it, but in the server doesn't works this.

    Finally, i installed 4.4.7 and works again. granproblema2

    Compare the urls from the bugs in the before image and see here: granproblema2

    The source are correct loading in this case, correct url, but, with 4.4.8 the statics urls are wrong.

    Then, i think that is the problem of 4.4.8 with static urls, but, i don't know why.

    Can anyone fix it?

    opened by SalahAdDin 34
  • Fix ckeditor-init.js by giving it access to a valid jQuery instance, along with other minor changes to ckeditor-init.js

    Fix ckeditor-init.js by giving it access to a valid jQuery instance, along with other minor changes to ckeditor-init.js

    fixes #13 . Previously ckeditor-init.js failed to properly run as '$' was undefined. The fix is to use django's jQuery instance if '$' is undefined.

    Also, I replaced the .click() with a .on() because I was running into issues with the event being attached before all elements had been placed. This is particularly an issue for users of django-nested-inlines.

    Changes:

    • Set $ to django.jQuery if $ not defined
    • organize ckeditor-init.js
    • replace .click(...) with delegated .on(...) in case elements do not exist when code is run
    opened by natejlong 17
  • Getting 404 errors on browsing through uploaded images

    Getting 404 errors on browsing through uploaded images

    After following the installation instructions and implementing the CKEditor on the admin interface, I am unable to insert images after uploading them.

    I am getting 404 errors when I try to browse through the images I have uploaded.

    This is a screenshot of the screen I am getting. Any help would be appreciated. screenshot from 2014-11-16 22 05 21

    opened by kevgathuku 14
  • Ability to upload non-image files

    Ability to upload non-image files

    Hi, The ability to upload non-image files was missing, which rendered the "embed flash" button completely broken. I've fixed views.py so that it wouldn't assume that the file is an image and also changed the galleriffic filebrowser to display nice file icons for non-image files.

    Other minor issues I fixed along the way:

    • Added i18n support
    • Fixed filename localisation issues
    • Fixed the gallery js to consider the image and viewport height when resizing images. (displaying very tall images was broken)
    opened by syko 13
  • Compatibility: TypeError raised on Django 1.11

    Compatibility: TypeError raised on Django 1.11

    Hello,

    I just tested todeay’s update to Django 1.11 and noticed that I get an exception when there’s a form with a CKEditor from django-ckeditor:

    TypeError at … build_attrs() got an unexpected keyword argument 'name'

    virtualenvs/cert/lib/python3.4/site-packages/ckeditor/widgets.py in render

    111 final_attrs = self.build_attrs(attrs, name=name)

    In 1.10 the same code works without any problem.

    opened by MacLake 12
  • image2 404 error

    image2 404 error

    In my django app, image2 doesn't load. I have added it in the extraPlugin.

    But the page shows this error - /static/ckeditor/ckeditor/plugins/image2/plugin.js?t=G6DE HTTP/1.1" 404

    If I remove image2 from the extrasPlugin, the ckeditor does load with image plugin.

    I checked my assets folder and I can't find image2 folder under ckeditor plugins folder

    opened by abhinavnair 11
  • when click imagen browser not working

    when click imagen browser not working

    Hi when i sutmit imagen all ok the imagen presented in ckeditor, but when i browser imagen no appear anything, this is url: http://127.0.0.1:8000/ckeditor/browse/?CKEditor=id_texto&CKEditorFuncNum=1&langCode=es

    and only see: Browse for the image you want, then click 'Embed Image' to continue... and gif ajax but no load any imagen, my configuracion in setting is: MEDIA_ROOT = os.environ.get('MEDIA_ROOT',os.path.join(BASE_DIR, 'media')) MEDIA_URL = '/media/'

    CKEDITOR_UPLOAD_PATH = os.environ.get('MEDIA_ROOT',os.path.join(BASE_DIR, 'media'))

    i used django 1.6.x and this packaged django-ckeditor-updated==4.2.8

    what other configuration i need, for browser imagen load??

    thank if any help me good direction!! :)

    opened by CARocha 11
  • STATICURL issue in browse.html

    STATICURL issue in browse.html

    when i click on flash/image BrowseServer button, i found that the path of image is correct, but raise 404. And i found that the path of jquery is wrong, and {{ STATICURL }} is not be mapped, i have to manually map STATICURL in view.py, like this:

    def browse(request): context = RequestContext(request, { 'images': get_image_browse_urls(request.user), 'STATIC_URL': settings.STATIC_URL, })
    return render_to_response('browse.html', context)

    opened by allenling 11
  • Adding inline RichTextField doesn't work

    Adding inline RichTextField doesn't work

    Use a RichTextField in an inline model. Try to add an instance. You get

    uncaught exception: [CKEDITOR.editor] The instance "id_answer_set-prefix-answer" already exists

    This makes it impossible to use the newly created CKEditor field. Looking through the code (I have no idea how CKEditor works, just guessing) it generates a td with id="cke_contents_id_answer_set-prefix-answer" on an added inline, my RichTextField is called "answer". The invisible textfield's id is "id_answer_set-1-answer" Notice the 1 which identifies it. I would assume the td's id should thus be "cke_contents_id_answer_set-1__prefix__-answer"

    There is a related stackoverflow question asked back in February with no answer. http://stackoverflow.com/questions/5137478/django-ckeditor-uncaught-exception-using-inlines

    opened by bufke 11
  • Problem with image upload

    Problem with image upload

    Hello! I have problem with image upload in Django-CKEditor. When i want upload image I see this:

    Are You have any idea what is wrong? problem

    I use: Linux Ubuntu (but in Windows is the same) Django 1.8.2 (but in 1.7 is the same) In CKEditor-Demo is the same

    Thank You! eFeniks

    opened by efeniks 10
  • Fix overriding form field `kwargs`

    Fix overriding form field `kwargs`

    This should provide a better fix for #708 (which was caused by a bug in #707), while also enabling code to override the widget keyword argument of RichTextFormField and RichTextUploadingFormField. Also added some tests for the mentioned bug.

    See each commit message for more details.

    opened by ddabble 9
  • CVE-2011-4969 CVE-2012-6708 galleriffic/js/jquery-1.3.2.js XSS Vulnerability

    CVE-2011-4969 CVE-2012-6708 galleriffic/js/jquery-1.3.2.js XSS Vulnerability

    opened by bmstettin 1
  • Fix the weight of the RichTextField (responsive)

    Fix the weight of the RichTextField (responsive)

    We are using django-ckeditor but we found issue on the RichTextFiled There is no any issue on big Screen Like Monitor greater than 21 inch but if we use smaller screen like Laptop or less than 15 inch monitor then there is issue of overlap with the django save button then i fixed it on our project and i want create pull request on your repo. image

    opened by sundaradh 0
  • Override CKEditorWidget template_name

    Override CKEditorWidget template_name

    I would like to override the template_name in the CKEditorWidget. If you place the template_name in the init function and leave the "ckeditor/widget.html" as the default we would be able to override the template.

    The reason I would like to be able to override is the style is set to remove the style="display: inline-block;" and customize it

    opened by bbonfoey 1
  • Need plugin for the citation

    Need plugin for the citation

    Need a reference plugin tool that will add the numbered citations. Currently found no plugin for adding a reference in the text. Please add any referencing tool that will allow citing journals, books, and website links.

    opened by mszahan 0
  • Django 4.1- ckeditor widget not appearing in admin

    Django 4.1- ckeditor widget not appearing in admin

    The widget is not appearing the the Django admin. There is also this line (/static/ckeditor/ckeditor-init.js" data-ckeditor-basepath="/static/ckeditor/ckeditor/" id="ckeditor-init-script) which appears at the top of the DOM body and shows up above the admin bar. Presumably the init script is not being properly activated?

    Screen Shot 2022-09-06 at 5 43 27 PM

    Screen Shot 2022-09-06 at 5 43 13 PM

    opened by magnus-haw 2
Owner
null
The Django Leaflet Admin List package provides an admin list view featured by the map and bounding box filter for the geo-based data of the GeoDjango.

The Django Leaflet Admin List package provides an admin list view featured by the map and bounding box filter for the geo-based data of the GeoDjango. It requires a django-leaflet package.

Vsevolod Novikov 33 Nov 11, 2022
Django application and library for importing and exporting data with admin integration.

django-import-export django-import-export is a Django application and library for importing and exporting data with included admin integration. Featur

null 2.6k Dec 26, 2022
django-quill-editor makes Quill.js easy to use on Django Forms and admin sites

django-quill-editor django-quill-editor makes Quill.js easy to use on Django Forms and admin sites No configuration required for static files! The ent

lhy 139 Dec 5, 2022
Intellicards-backend - A Django project bootstrapped with django-admin startproject mysite

Intellicards-backend - A Django project bootstrapped with django-admin startproject mysite

Fabrizio Torrico 2 Jan 13, 2022
Strawberry-django-plus - Enhanced Strawberry GraphQL integration with Django

strawberry-django-plus Enhanced Strawberry integration with Django. Built on top

BLB Ventures 138 Dec 28, 2022
Add Chart.js visualizations to your Django admin using a mixin class

django-admincharts Add Chart.js visualizations to your Django admin using a mixin class. Example from django.contrib import admin from .models import

Dropseed 22 Nov 22, 2022
📝 Sticky Notes in Django admin

django-admin-sticky-notes Share notes between superusers. Installation Install via pip: pip install django_admin_sticky_notes Put django_admin_sticky_

Dariusz Choruży 7 Oct 6, 2021
mirage ~ ♪ extended django admin or manage.py command.

mirage ~ ♪ extended django admin or manage.py command. ⬇️ Installation Installing Mirage with Pipenv is recommended. pipenv install -d mirage-django-l

Shota Shimazu 6 Feb 14, 2022
Super simple bar charts for django admin list views visualizing the number of objects based on date_hierarchy using Chart.js.

Super simple bar charts for django admin list views visualizing the number of objects based on date_hierarchy using Chart.js.

foorilla LLC 4 May 18, 2022
Django URL Shortener is a Django app to to include URL Shortening feature in your Django Project

Django URL Shortener Django URL Shortener is a Django app to to include URL Shortening feature in your Django Project Install this package to your Dja

Rishav Sinha 4 Nov 18, 2021
A simple app that provides django integration for RQ (Redis Queue)

Django-RQ Django integration with RQ, a Redis based Python queuing library. Django-RQ is a simple app that allows you to configure your queues in djan

RQ 1.6k Jan 6, 2023
Bootstrap 3 integration with Django.

django-bootstrap3 Bootstrap 3 integration for Django. Goal The goal of this project is to seamlessly blend Django and Bootstrap 3. Want to use Bootstr

Zostera B.V. 2.3k Jan 3, 2023
Bootstrap 4 integration with Django.

django-bootstrap 4 Bootstrap 4 integration for Django. Goal The goal of this project is to seamlessly blend Django and Bootstrap 4. Requirements Pytho

Zostera B.V. 980 Dec 29, 2022
Plug and play continuous integration with django and jenkins

django-jenkins Plug and play continuous integration with Django and Jenkins Installation From PyPI: $ pip install django-jenkins Or by downloading th

Mikhail Podgurskiy 941 Oct 22, 2022
A django integration for huey task queue that supports multi queue management

django-huey This package is an extension of huey contrib djhuey package that allows users to manage multiple queues. Installation Using pip package ma

GAIA Software 32 Nov 26, 2022
TinyMCE integration for Django

django-tinymce django-tinymce is a Django application that contains a widget to render a form field as a TinyMCE editor. Quickstart Install django-tin

Jazzband 1.1k Dec 26, 2022
Bootstrap 3 integration with Django.

django-bootstrap3 Bootstrap 3 integration for Django. Goal The goal of this project is to seamlessly blend Django and Bootstrap 3. Want to use Bootstr

Zostera B.V. 2.3k Jan 2, 2023
Django + Next.js integration

Django Next.js Django + Next.js integration From a comment on StackOverflow: Run 2 ports on the same server. One for django (public facing) and one fo

Quera 162 Jan 3, 2023
Store model history and view/revert changes from admin site.

django-simple-history django-simple-history stores Django model state on every create/update/delete. This app supports the following combinations of D

Jazzband 1.8k Jan 8, 2023