├── sandbox ├── __init__.py ├── example │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── 0001_initial.py │ ├── templates │ │ └── test_form.html │ ├── tests.py │ ├── apps.py │ ├── admin.py │ ├── models.py │ ├── hyper_blocks.py │ └── views.py ├── wsgi.py ├── urls.py └── settings.py ├── hypereditor ├── tests │ ├── __init__.py │ ├── mocks.py │ ├── test_chooser.py │ └── test_templatetags.py ├── migrations │ └── __init__.py ├── __init__.py ├── models.py ├── admin.py ├── templates │ └── hypereditor │ │ ├── preview.html │ │ ├── blocks │ │ ├── text │ │ │ └── default.html │ │ ├── heading │ │ │ └── default.html │ │ ├── column │ │ │ └── default.html │ │ ├── row │ │ │ └── default.html │ │ ├── link │ │ │ └── default.html │ │ ├── image │ │ │ └── default.html │ │ ├── section │ │ │ └── default.html │ │ ├── tab │ │ │ └── default.html │ │ ├── slider │ │ │ └── default.html │ │ └── contentbox │ │ │ └── default.html │ │ ├── js │ │ ├── blocks.js │ │ └── fields.js │ │ ├── widgets │ │ └── hyper_widget.html │ │ ├── edit_handlers │ │ └── hyper_editor_field_panel.html │ │ ├── partials │ │ └── editor_iframe.html │ │ └── hyper_editor.html ├── apps.py ├── urls.py ├── settings.py ├── blocks │ ├── chooser.py │ ├── __init__.py │ └── base.py ├── utils.py ├── templatetags │ └── hyper_tags.py ├── views.py ├── hyper_blocks.py └── fields.py ├── MANIFEST.in ├── readthedocs.yml ├── Pipfile ├── docs ├── wagtail.md ├── index.md ├── usage.md └── blocks.md ├── mkdocs.yml ├── manage.py ├── LICENSE ├── setup.py ├── README.md ├── .gitignore └── Pipfile.lock /sandbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hypereditor/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hypereditor/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox/example/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox/example/templates/test_form.html: -------------------------------------------------------------------------------- 1 | {{ form }} -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst 2 | recursive-include hypereditor/ * 3 | -------------------------------------------------------------------------------- /hypereditor/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = "hypereditor.apps.HyperEditorConfig" -------------------------------------------------------------------------------- /hypereditor/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- 1 | build: 2 | image: latest 3 | 4 | python: 5 | setup_py_install: true 6 | -------------------------------------------------------------------------------- /hypereditor/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /sandbox/example/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /hypereditor/templates/hypereditor/preview.html: -------------------------------------------------------------------------------- 1 | {% load hyper_tags %} 2 | 3 | {% hyper_preview value %} -------------------------------------------------------------------------------- /hypereditor/templates/hypereditor/blocks/text/default.html: -------------------------------------------------------------------------------- 1 |
13 |