├── .deployment ├── Dockerfile ├── entrypoint.sh └── uwsgi.ini ├── .editorconfig ├── .github └── workflows │ ├── deploy.yml │ ├── lint.yml │ ├── publish.yml │ ├── testparser.yml │ └── tests.yml ├── .gitignore ├── .isort.cfg ├── .prettierrc.json ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── README.md ├── assets ├── no-comments.pegjs ├── pegjsconf.json ├── postcss.config.js ├── scss │ ├── _bootstrap-contrast.scss │ ├── _richtext.scss │ ├── adminform.scss │ ├── bootstrap5-extra.scss │ └── collections.scss ├── sprite-flags.css.mustache ├── sprite-flags.mjs ├── tag-attributes.pegjs ├── tailwind-styles.css └── tailwind.config.js ├── client ├── babel.config.json ├── build │ └── .gitkeep ├── declaration.d.ts ├── django-formset.monolith.ts ├── django-formset.ts ├── django-formset │ ├── Calendar.scss │ ├── Calendar.ts │ ├── DateTime.scss │ ├── DateTime.ts │ ├── DecimalUnit.scss │ ├── DecimalUnit.ts │ ├── DjangoFormset.scss │ ├── DjangoFormset.ts │ ├── DjangoSelectize.ts │ ├── DjangoSelectizeCountry.scss │ ├── DjangoSelectizeCountry.ts │ ├── DjangoSelectizeShadow.scss │ ├── DjangoSelectizeWrapper.scss │ ├── DjangoSlug.ts │ ├── DualSelector.scss │ ├── DualSelector.ts │ ├── FileUploadWidget.ts │ ├── FormDialog.ts │ ├── IncompleteSelect.ts │ ├── PhoneNumber.scss │ ├── PhoneNumber.ts │ ├── RichtextArea.scss │ ├── RichtextArea.ts │ ├── SortableSelect.scss │ ├── SortableSelect.ts │ ├── StepperCollection.scss │ ├── StepperCollection.ts │ ├── Widget.ts │ ├── _colors.scss │ ├── _dropbox.scss │ ├── countries.ts │ ├── helpers.ts │ ├── interfaces.ts │ └── readme.md ├── esbuild-plugin-inline-import.cjs ├── esbuild.config.mjs ├── icons │ ├── bummer.svg │ ├── calendar.svg │ ├── contract-left.svg │ ├── contract-right.svg │ ├── okay.svg │ └── spinner.svg ├── rollup.config.js ├── tests │ ├── no-comments.test.ts │ └── tag-attributes.test.ts └── tiptap-extensions │ ├── classbased.ts │ ├── color.ts │ ├── indent.ts │ └── margin.ts ├── docs ├── Makefile ├── requirements.txt └── source │ ├── _static │ ├── address-form.png │ ├── admin-company-collection.png │ ├── admin-person-model.png │ ├── animated-person-form.png │ ├── bootstrap-fieldset.png │ ├── bootstrap-form.png │ ├── bootstrap-inline.png │ ├── bootstrap-person-form-w-classes.png │ ├── bootstrap-person-form.png │ ├── bootstrap-textarea.png │ ├── bootstrap-upload.gif │ ├── branding-logo.svg │ ├── bulma-form.png │ ├── bulma-person-form.png │ ├── default-person-form.png │ ├── dual-selector-optgroups.png │ ├── dual-selector.png │ ├── dual-sortable-selector.gif │ ├── foundation-person-form.png │ ├── person-form.gif │ ├── selectize-multiple.png │ ├── selectize-optgroups.png │ ├── styling-bootstrap-inline.png │ ├── submit-failure.gif │ ├── submit-success.gif │ ├── tailwind-marked-for-deletion.png │ ├── tailwind-person-form.png │ ├── tailwind-sortable-collection.png │ └── unstyled-form.png │ ├── _templates │ ├── button-action.html │ ├── buttons-base.html │ ├── buttons-bootstrap.html │ ├── buttons-tailwind.html │ ├── collection-no-button.html │ ├── crud-form.html │ ├── css │ │ ├── common-colors.text │ │ ├── dark-colors.text │ │ ├── light-colors.text │ │ └── nested-styles.text │ ├── form-collection.html │ ├── form-extended.html │ ├── form-no-button.html │ ├── form.html │ ├── icons │ │ ├── send-plus.svg │ │ ├── send.svg │ │ └── trash.svg │ └── urls.py.jinja2 │ ├── activators.rst │ ├── admin-integration.rst │ ├── alternative-widgets.rst │ ├── buttons.rst │ ├── changes.rst │ ├── chat-gpt.rst │ ├── collection-fields.rst │ ├── conditionals.rst │ ├── conf.py │ ├── contributing.rst │ ├── country-selectize.rst │ ├── dark-mode.rst │ ├── date-time-input.rst │ ├── date-time-range.rst │ ├── decimal-unit-field.rst │ ├── default-widgets.rst │ ├── development.rst │ ├── dialog-forms.rst │ ├── dialog-model-forms.rst │ ├── django-formset.rst │ ├── dual-selector.rst │ ├── faq.rst │ ├── fields-mapping.rst │ ├── fieldsets.rst │ ├── form-collections.rst │ ├── form-renderer.rst │ ├── form-stepper.rst │ ├── history.rst │ ├── index.rst │ ├── installation.rst │ ├── intro.rst │ ├── model-collections.rst │ ├── model-forms.rst │ ├── phone-number-field.rst │ ├── richtext-extensions.rst │ ├── richtext.rst │ ├── selectize.rst │ ├── single-form.rst │ ├── slug-input.rst │ ├── styling.rst │ ├── uploading.rst │ └── withholding-feedback.rst ├── fly.toml ├── formset ├── __init__.py ├── admin.py ├── boundfield.py ├── calendar.py ├── collection.py ├── dialog.py ├── exceptions.py ├── fieldset.py ├── fieldsmapping.py ├── formfields │ ├── __init__.py │ ├── activator.py │ ├── collection.py │ ├── ranges.py │ ├── richtext.py │ └── shadow.py ├── forms.py ├── locale │ ├── af │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── ar │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── bg │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── ca │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── cs │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── da │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── el │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── eo │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── es │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── et │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── eu │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── eu_ES │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── fa │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── fi │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── he │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── hr │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── hu │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── hy │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── it │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── ko_KR │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── lv │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── mn │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── nb │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── pt_PT │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── ro │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── sl │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── sr │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── sr_Latn │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── sr_Latn_BA │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── sv │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── tr_TR │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── uk │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ ├── zh_Hans │ │ └── LC_MESSAGES │ │ │ └── djangojs.po │ └── zh_Hant │ │ └── LC_MESSAGES │ │ └── djangojs.po ├── management │ └── commands │ │ └── cleanup_files.py ├── modelfields │ ├── __init__.py │ └── richtext.py ├── renderers │ ├── __init__.py │ ├── admin.py │ ├── bootstrap.py │ ├── bulma.py │ ├── default.py │ ├── foundation.py │ ├── tailwind.py │ └── uikit.py ├── richtext │ ├── __init__.py │ ├── controls.py │ ├── dialogs.py │ └── upload.py ├── static │ └── formset │ │ ├── icons │ │ ├── file-audio.svg │ │ ├── file-empty.svg │ │ ├── file-font.svg │ │ ├── file-missing.svg │ │ ├── file-pdf.svg │ │ ├── file-picture.svg │ │ ├── file-unknown.svg │ │ ├── file-video.svg │ │ └── file-zip.svg │ │ └── tiptap-extensions │ │ ├── footnote.js │ │ ├── procurator.js │ │ ├── simple_image.js │ │ └── simple_link.js ├── stepper.py ├── templates │ ├── admin │ │ └── formset │ │ │ ├── change_form.html │ │ │ └── submit_line.html │ ├── calendar │ │ ├── hours.html │ │ ├── months.html │ │ ├── range.html │ │ ├── weeks.html │ │ └── years.html │ ├── formset │ │ ├── admin │ │ │ ├── buttons │ │ │ │ └── add_collection.html │ │ │ ├── collection.html │ │ │ ├── field_group.html │ │ │ ├── fieldset.html │ │ │ ├── form.html │ │ │ ├── help_text.html │ │ │ └── widgets │ │ │ │ ├── dual_selector.html │ │ │ │ └── file.html │ │ ├── bootstrap │ │ │ ├── buttons │ │ │ │ ├── add_collection.html │ │ │ │ ├── remove_collection.html │ │ │ │ ├── richtext_align.html │ │ │ │ ├── richtext_color.html │ │ │ │ └── richtext_heading.html │ │ │ ├── collection.html │ │ │ ├── field_group.html │ │ │ ├── form.html │ │ │ ├── help_text.html │ │ │ └── widgets │ │ │ │ ├── checkbox.html │ │ │ │ ├── collection.html │ │ │ │ ├── dual_selector.html │ │ │ │ ├── file.html │ │ │ │ ├── input_option.html │ │ │ │ ├── multiple_input.html │ │ │ │ └── richtextarea.html │ │ ├── bulma │ │ │ ├── buttons │ │ │ │ ├── add_collection.html │ │ │ │ └── remove_collection.html │ │ │ ├── collection.html │ │ │ ├── field_group.html │ │ │ ├── form.html │ │ │ └── widgets │ │ │ │ ├── checkbox.html │ │ │ │ ├── collection.html │ │ │ │ ├── dual_selector.html │ │ │ │ ├── file.html │ │ │ │ ├── input_option.html │ │ │ │ ├── multiple_input.html │ │ │ │ └── select.html │ │ ├── default │ │ │ ├── buttons │ │ │ │ ├── add_collection.html │ │ │ │ ├── move_all_left.html │ │ │ │ ├── move_all_right.html │ │ │ │ ├── move_selected_left.html │ │ │ │ ├── move_selected_right.html │ │ │ │ ├── redo_assignment.html │ │ │ │ ├── remove_collection.html │ │ │ │ └── undo_assignment.html │ │ │ ├── collection.html │ │ │ ├── detached_field.html │ │ │ ├── field_errors.html │ │ │ ├── field_group.html │ │ │ ├── fieldset.html │ │ │ ├── form.html │ │ │ ├── form_dialog.html │ │ │ ├── help_text.html │ │ │ ├── stepper_collection.html │ │ │ └── widgets │ │ │ │ ├── button.html │ │ │ │ ├── calendar.html │ │ │ │ ├── collection.html │ │ │ │ ├── datetime.html │ │ │ │ ├── dual_selector.html │ │ │ │ ├── file.html │ │ │ │ ├── multiple_input.html │ │ │ │ ├── richtextarea.html │ │ │ │ ├── select.html │ │ │ │ ├── selectize.html │ │ │ │ └── selectize_country.html │ │ ├── form_attrs.html │ │ ├── foundation │ │ │ ├── buttons │ │ │ │ ├── add_collection.html │ │ │ │ └── remove_collection.html │ │ │ ├── collection.html │ │ │ ├── field_group.html │ │ │ ├── form.html │ │ │ └── widgets │ │ │ │ ├── checkbox.html │ │ │ │ ├── collection.html │ │ │ │ ├── dual_selector.html │ │ │ │ ├── file.html │ │ │ │ ├── inlined_input_option.html │ │ │ │ └── multiple_input.html │ │ ├── icons │ │ │ ├── activator.svg │ │ │ ├── add-fill.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-up.svg │ │ │ ├── blockquote.svg │ │ │ ├── bold.svg │ │ │ ├── bulletlist.svg │ │ │ ├── calendar-today.svg │ │ │ ├── chevron-double-left.svg │ │ │ ├── chevron-double-right.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── clearformat.svg │ │ │ ├── codeblock.svg │ │ │ ├── decreasemargin.svg │ │ │ ├── delete-back.svg │ │ │ ├── double-chevron-left.svg │ │ │ ├── double-chevron-right.svg │ │ │ ├── font-family.svg │ │ │ ├── font-size.svg │ │ │ ├── footnote.svg │ │ │ ├── hardbreak.svg │ │ │ ├── heading.svg │ │ │ ├── heading1.svg │ │ │ ├── heading2.svg │ │ │ ├── heading3.svg │ │ │ ├── heading4.svg │ │ │ ├── heading5.svg │ │ │ ├── heading6.svg │ │ │ ├── horizontalrule.svg │ │ │ ├── image.svg │ │ │ ├── increasemargin.svg │ │ │ ├── indentfirstline.svg │ │ │ ├── italic.svg │ │ │ ├── letters.svg │ │ │ ├── line-height.svg │ │ │ ├── link.svg │ │ │ ├── orderedlist.svg │ │ │ ├── outdentfirstline.svg │ │ │ ├── placeholder.svg │ │ │ ├── questionmark.svg │ │ │ ├── redo.svg │ │ │ ├── reset.svg │ │ │ ├── send.svg │ │ │ ├── separator.svg │ │ │ ├── strike.svg │ │ │ ├── subscript.svg │ │ │ ├── superscript.svg │ │ │ ├── textcolor.svg │ │ │ ├── trash.svg │ │ │ ├── underline.svg │ │ │ ├── undo.svg │ │ │ └── unlink.svg │ │ ├── non_field_errors.html │ │ ├── richtext │ │ │ ├── align.html │ │ │ ├── class_based.html │ │ │ ├── color.html │ │ │ ├── control.html │ │ │ ├── control_group.html │ │ │ ├── dialog_control.html │ │ │ ├── form_dialog.html │ │ │ ├── heading.html │ │ │ └── separator.html │ │ ├── tailwind │ │ │ ├── buttons │ │ │ │ ├── add_collection.html │ │ │ │ └── remove_collection.html │ │ │ ├── collection.html │ │ │ ├── field_group.html │ │ │ ├── form.html │ │ │ ├── help_text.html │ │ │ └── widgets │ │ │ │ ├── checkbox.html │ │ │ │ ├── collection.html │ │ │ │ ├── dual_selector.html │ │ │ │ ├── file.html │ │ │ │ ├── input_option.html │ │ │ │ ├── multiple_input.html │ │ │ │ └── radio.html │ │ └── uikit │ │ │ ├── buttons │ │ │ ├── add_collection.html │ │ │ └── remove_collection.html │ │ │ ├── collection.html │ │ │ ├── field_group.html │ │ │ ├── form.html │ │ │ └── widgets │ │ │ ├── checkbox.html │ │ │ ├── collection.html │ │ │ ├── file.html │ │ │ ├── input_option.html │ │ │ └── multiple_input.html │ └── richtext │ │ ├── README.md │ │ ├── bulletlist.html │ │ ├── doc.html │ │ ├── footnote.html │ │ ├── footnote_ref.html │ │ ├── footnotes_list.html │ │ ├── heading.html │ │ ├── horizontalrule.html │ │ ├── listitem.html │ │ ├── marks │ │ ├── bold.html │ │ ├── code.html │ │ ├── italic.html │ │ ├── procurator.html │ │ ├── simple_link.html │ │ ├── textcolor.html │ │ └── underline.html │ │ ├── orderedlist.html │ │ ├── paragraph.html │ │ └── text.html ├── templatetags │ ├── __init__.py │ ├── formset_admin.py │ ├── formsetify.py │ ├── phonenumber.py │ └── richtext.py ├── upload.py ├── utils.py ├── validators.py ├── views.py └── widgets │ ├── __init__.py │ ├── button.py │ ├── collection.py │ ├── datetime.py │ ├── decimalunit.py │ ├── models.py │ ├── phonenumber.py │ ├── ranges.py │ ├── richtext.py │ ├── slug.py │ └── upload.py ├── jest.config.js ├── package.json ├── readmeimg ├── bootstrap-actions.gif ├── bootstrap-address-horizontal.png ├── bootstrap-address.png ├── bootstrap-contact.png ├── bootstrap-multiple-input.png ├── bootstrap-upload-empty.png ├── bootstrap-upload.png ├── richtext-editor.png ├── tailwind-address.png ├── tailwind-dual-selector.png └── tailwind-selectize.png ├── setup.py ├── testapp ├── __init__.py ├── admin.py ├── asgi.py ├── assets │ ├── broken-image.jpg │ ├── dummy.pdf │ └── python-django.png ├── demo_helpers.py ├── fixtures │ ├── counties.json │ ├── pages.json │ └── reporters.json ├── forms │ ├── __init__.py │ ├── accordion.py │ ├── address.py │ ├── advertisement.py │ ├── article.py │ ├── birthdate.py │ ├── blog.py │ ├── booking.py │ ├── button.py │ ├── cafeteria.py │ ├── carousel.py │ ├── checkout.py │ ├── company.py │ ├── complete.py │ ├── contact.py │ ├── country.py │ ├── county.py │ ├── customer.py │ ├── gallerycollection.py │ ├── galleryform.py │ ├── issue.py │ ├── moment.py │ ├── moon.py │ ├── opinion.py │ ├── person.py │ ├── phone.py │ ├── poll.py │ ├── price.py │ ├── product.py │ ├── profile.py │ ├── questionnaire.py │ ├── schedule.py │ ├── state.py │ ├── terms_of_use.py │ ├── upload.py │ └── user.py ├── manage.py ├── middleware.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── annotation.py │ ├── article.py │ ├── blog.py │ ├── company.py │ ├── component.py │ ├── county.py │ ├── gallery.py │ ├── issue.py │ ├── page.py │ ├── person.py │ ├── poll.py │ ├── product.py │ ├── reporter.py │ └── user.py ├── pytest.ini ├── requirements.txt ├── settings.py ├── static │ └── testapp │ │ ├── css │ │ ├── bootstrap.css │ │ ├── bulma.css │ │ ├── debug.css │ │ ├── foundation.css │ │ ├── tailwind.css │ │ ├── uikit.css │ │ └── utils.css │ │ ├── js │ │ └── bootstrap-auto-dark-mode.js │ │ └── tiptap-extensions │ │ ├── custom_hyperlink.js │ │ └── custom_image.js ├── storage.py ├── templates │ ├── alternative-richtext │ │ └── doc.html │ ├── bootstrap │ │ ├── base.html │ │ ├── buttons.html │ │ └── person-form.html │ ├── bulma │ │ ├── base.html │ │ └── buttons.html │ ├── calendar │ │ ├── weeks-moon.html │ │ └── weeks-reservation.html │ ├── docutils.txt │ ├── foundation │ │ ├── base.html │ │ └── buttons.html │ ├── icons.html │ ├── landing.html │ ├── richtext │ │ └── marks │ │ │ └── custom_hyperlink.html │ ├── sphinx_view │ │ ├── base.html │ │ ├── page.html │ │ └── search.html │ ├── success.html │ ├── tailwind │ │ ├── base.html │ │ └── buttons.html │ ├── testapp │ │ ├── base.html │ │ ├── button-actions.html │ │ ├── buttons.html │ │ ├── extended-form.html │ │ ├── field-by-field.html │ │ ├── form-collection-no-buttons.html │ │ ├── form-collection.html │ │ ├── formset-data.html │ │ ├── house.svg │ │ ├── index.html │ │ ├── margin-bottom.svg │ │ ├── native-form-no-buttons.html │ │ ├── native-form-tiptap.html │ │ ├── native-form.html │ │ ├── tiptap-alternative.html │ │ └── tiptap.html │ └── uikit │ │ ├── base.html │ │ └── buttons.html ├── templatetags │ └── hyperlink.py ├── tests │ ├── __init__.py │ ├── conftest.py │ ├── test_classlist.py │ ├── test_component_field.py │ ├── test_datetime_field.py │ ├── test_e2e_admin.py │ ├── test_e2e_button.py │ ├── test_e2e_collections.py │ ├── test_e2e_datetimepicker.py │ ├── test_e2e_datetimerange.py │ ├── test_e2e_decimalunit.py │ ├── test_e2e_dialog.py │ ├── test_e2e_dialogmodel.py │ ├── test_e2e_dual_selector.py │ ├── test_e2e_fields.py │ ├── test_e2e_fieldset.py │ ├── test_e2e_form.py │ ├── test_e2e_nested.py │ ├── test_e2e_operability.py │ ├── test_e2e_optgroups.py │ ├── test_e2e_phonenumber.py │ ├── test_e2e_preselection.py │ ├── test_e2e_richtextarea.py │ ├── test_e2e_selectize.py │ ├── test_e2e_slugfield.py │ ├── test_e2e_stepper.py │ ├── test_e2e_upload.py │ ├── test_fields_mapping.py │ ├── test_model_forms.py │ ├── test_nested_collections.py │ ├── test_phone_number.py │ ├── test_render_fields.py │ ├── test_render_forms.py │ ├── test_render_richtext.py │ └── utils.py ├── urls.py ├── views.py └── wsgi.py └── tsconfig.json /.deployment/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/.deployment/Dockerfile -------------------------------------------------------------------------------- /.deployment/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/.deployment/entrypoint.sh -------------------------------------------------------------------------------- /.deployment/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/.deployment/uwsgi.ini -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/testparser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/.github/workflows/testparser.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | profile=django 3 | line_length=119 4 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/README.md -------------------------------------------------------------------------------- /assets/no-comments.pegjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/assets/no-comments.pegjs -------------------------------------------------------------------------------- /assets/pegjsconf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/assets/pegjsconf.json -------------------------------------------------------------------------------- /assets/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/assets/postcss.config.js -------------------------------------------------------------------------------- /assets/scss/_bootstrap-contrast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/assets/scss/_bootstrap-contrast.scss -------------------------------------------------------------------------------- /assets/scss/_richtext.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/assets/scss/_richtext.scss -------------------------------------------------------------------------------- /assets/scss/adminform.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/assets/scss/adminform.scss -------------------------------------------------------------------------------- /assets/scss/bootstrap5-extra.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/assets/scss/bootstrap5-extra.scss -------------------------------------------------------------------------------- /assets/scss/collections.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/assets/scss/collections.scss -------------------------------------------------------------------------------- /assets/sprite-flags.css.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/assets/sprite-flags.css.mustache -------------------------------------------------------------------------------- /assets/sprite-flags.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/assets/sprite-flags.mjs -------------------------------------------------------------------------------- /assets/tag-attributes.pegjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/assets/tag-attributes.pegjs -------------------------------------------------------------------------------- /assets/tailwind-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/assets/tailwind-styles.css -------------------------------------------------------------------------------- /assets/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/assets/tailwind.config.js -------------------------------------------------------------------------------- /client/babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/babel.config.json -------------------------------------------------------------------------------- /client/build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/declaration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/declaration.d.ts -------------------------------------------------------------------------------- /client/django-formset.monolith.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset.monolith.ts -------------------------------------------------------------------------------- /client/django-formset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset.ts -------------------------------------------------------------------------------- /client/django-formset/Calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/Calendar.scss -------------------------------------------------------------------------------- /client/django-formset/Calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/Calendar.ts -------------------------------------------------------------------------------- /client/django-formset/DateTime.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/DateTime.scss -------------------------------------------------------------------------------- /client/django-formset/DateTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/DateTime.ts -------------------------------------------------------------------------------- /client/django-formset/DecimalUnit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/DecimalUnit.scss -------------------------------------------------------------------------------- /client/django-formset/DecimalUnit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/DecimalUnit.ts -------------------------------------------------------------------------------- /client/django-formset/DjangoFormset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/DjangoFormset.scss -------------------------------------------------------------------------------- /client/django-formset/DjangoFormset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/DjangoFormset.ts -------------------------------------------------------------------------------- /client/django-formset/DjangoSelectize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/DjangoSelectize.ts -------------------------------------------------------------------------------- /client/django-formset/DjangoSelectizeCountry.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/DjangoSelectizeCountry.scss -------------------------------------------------------------------------------- /client/django-formset/DjangoSelectizeCountry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/DjangoSelectizeCountry.ts -------------------------------------------------------------------------------- /client/django-formset/DjangoSelectizeShadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/DjangoSelectizeShadow.scss -------------------------------------------------------------------------------- /client/django-formset/DjangoSelectizeWrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/DjangoSelectizeWrapper.scss -------------------------------------------------------------------------------- /client/django-formset/DjangoSlug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/DjangoSlug.ts -------------------------------------------------------------------------------- /client/django-formset/DualSelector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/DualSelector.scss -------------------------------------------------------------------------------- /client/django-formset/DualSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/DualSelector.ts -------------------------------------------------------------------------------- /client/django-formset/FileUploadWidget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/FileUploadWidget.ts -------------------------------------------------------------------------------- /client/django-formset/FormDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/FormDialog.ts -------------------------------------------------------------------------------- /client/django-formset/IncompleteSelect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/IncompleteSelect.ts -------------------------------------------------------------------------------- /client/django-formset/PhoneNumber.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/PhoneNumber.scss -------------------------------------------------------------------------------- /client/django-formset/PhoneNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/PhoneNumber.ts -------------------------------------------------------------------------------- /client/django-formset/RichtextArea.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/RichtextArea.scss -------------------------------------------------------------------------------- /client/django-formset/RichtextArea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/RichtextArea.ts -------------------------------------------------------------------------------- /client/django-formset/SortableSelect.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/SortableSelect.scss -------------------------------------------------------------------------------- /client/django-formset/SortableSelect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/SortableSelect.ts -------------------------------------------------------------------------------- /client/django-formset/StepperCollection.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/StepperCollection.scss -------------------------------------------------------------------------------- /client/django-formset/StepperCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/StepperCollection.ts -------------------------------------------------------------------------------- /client/django-formset/Widget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/Widget.ts -------------------------------------------------------------------------------- /client/django-formset/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/_colors.scss -------------------------------------------------------------------------------- /client/django-formset/_dropbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/_dropbox.scss -------------------------------------------------------------------------------- /client/django-formset/countries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/countries.ts -------------------------------------------------------------------------------- /client/django-formset/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/helpers.ts -------------------------------------------------------------------------------- /client/django-formset/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/interfaces.ts -------------------------------------------------------------------------------- /client/django-formset/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/django-formset/readme.md -------------------------------------------------------------------------------- /client/esbuild-plugin-inline-import.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/esbuild-plugin-inline-import.cjs -------------------------------------------------------------------------------- /client/esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/esbuild.config.mjs -------------------------------------------------------------------------------- /client/icons/bummer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/icons/bummer.svg -------------------------------------------------------------------------------- /client/icons/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/icons/calendar.svg -------------------------------------------------------------------------------- /client/icons/contract-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/icons/contract-left.svg -------------------------------------------------------------------------------- /client/icons/contract-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/icons/contract-right.svg -------------------------------------------------------------------------------- /client/icons/okay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/icons/okay.svg -------------------------------------------------------------------------------- /client/icons/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/icons/spinner.svg -------------------------------------------------------------------------------- /client/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/rollup.config.js -------------------------------------------------------------------------------- /client/tests/no-comments.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/tests/no-comments.test.ts -------------------------------------------------------------------------------- /client/tests/tag-attributes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/tests/tag-attributes.test.ts -------------------------------------------------------------------------------- /client/tiptap-extensions/classbased.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/tiptap-extensions/classbased.ts -------------------------------------------------------------------------------- /client/tiptap-extensions/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/tiptap-extensions/color.ts -------------------------------------------------------------------------------- /client/tiptap-extensions/indent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/tiptap-extensions/indent.ts -------------------------------------------------------------------------------- /client/tiptap-extensions/margin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/client/tiptap-extensions/margin.ts -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_static/address-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/address-form.png -------------------------------------------------------------------------------- /docs/source/_static/admin-company-collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/admin-company-collection.png -------------------------------------------------------------------------------- /docs/source/_static/admin-person-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/admin-person-model.png -------------------------------------------------------------------------------- /docs/source/_static/animated-person-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/animated-person-form.png -------------------------------------------------------------------------------- /docs/source/_static/bootstrap-fieldset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/bootstrap-fieldset.png -------------------------------------------------------------------------------- /docs/source/_static/bootstrap-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/bootstrap-form.png -------------------------------------------------------------------------------- /docs/source/_static/bootstrap-inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/bootstrap-inline.png -------------------------------------------------------------------------------- /docs/source/_static/bootstrap-person-form-w-classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/bootstrap-person-form-w-classes.png -------------------------------------------------------------------------------- /docs/source/_static/bootstrap-person-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/bootstrap-person-form.png -------------------------------------------------------------------------------- /docs/source/_static/bootstrap-textarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/bootstrap-textarea.png -------------------------------------------------------------------------------- /docs/source/_static/bootstrap-upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/bootstrap-upload.gif -------------------------------------------------------------------------------- /docs/source/_static/branding-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/branding-logo.svg -------------------------------------------------------------------------------- /docs/source/_static/bulma-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/bulma-form.png -------------------------------------------------------------------------------- /docs/source/_static/bulma-person-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/bulma-person-form.png -------------------------------------------------------------------------------- /docs/source/_static/default-person-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/default-person-form.png -------------------------------------------------------------------------------- /docs/source/_static/dual-selector-optgroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/dual-selector-optgroups.png -------------------------------------------------------------------------------- /docs/source/_static/dual-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/dual-selector.png -------------------------------------------------------------------------------- /docs/source/_static/dual-sortable-selector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/dual-sortable-selector.gif -------------------------------------------------------------------------------- /docs/source/_static/foundation-person-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/foundation-person-form.png -------------------------------------------------------------------------------- /docs/source/_static/person-form.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/person-form.gif -------------------------------------------------------------------------------- /docs/source/_static/selectize-multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/selectize-multiple.png -------------------------------------------------------------------------------- /docs/source/_static/selectize-optgroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/selectize-optgroups.png -------------------------------------------------------------------------------- /docs/source/_static/styling-bootstrap-inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/styling-bootstrap-inline.png -------------------------------------------------------------------------------- /docs/source/_static/submit-failure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/submit-failure.gif -------------------------------------------------------------------------------- /docs/source/_static/submit-success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/submit-success.gif -------------------------------------------------------------------------------- /docs/source/_static/tailwind-marked-for-deletion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/tailwind-marked-for-deletion.png -------------------------------------------------------------------------------- /docs/source/_static/tailwind-person-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/tailwind-person-form.png -------------------------------------------------------------------------------- /docs/source/_static/tailwind-sortable-collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/tailwind-sortable-collection.png -------------------------------------------------------------------------------- /docs/source/_static/unstyled-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_static/unstyled-form.png -------------------------------------------------------------------------------- /docs/source/_templates/button-action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_templates/button-action.html -------------------------------------------------------------------------------- /docs/source/_templates/buttons-base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_templates/buttons-base.html -------------------------------------------------------------------------------- /docs/source/_templates/buttons-bootstrap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_templates/buttons-bootstrap.html -------------------------------------------------------------------------------- /docs/source/_templates/buttons-tailwind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_templates/buttons-tailwind.html -------------------------------------------------------------------------------- /docs/source/_templates/collection-no-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_templates/collection-no-button.html -------------------------------------------------------------------------------- /docs/source/_templates/crud-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_templates/crud-form.html -------------------------------------------------------------------------------- /docs/source/_templates/css/common-colors.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_templates/css/common-colors.text -------------------------------------------------------------------------------- /docs/source/_templates/css/dark-colors.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_templates/css/dark-colors.text -------------------------------------------------------------------------------- /docs/source/_templates/css/light-colors.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_templates/css/light-colors.text -------------------------------------------------------------------------------- /docs/source/_templates/css/nested-styles.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_templates/css/nested-styles.text -------------------------------------------------------------------------------- /docs/source/_templates/form-collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_templates/form-collection.html -------------------------------------------------------------------------------- /docs/source/_templates/form-extended.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_templates/form-extended.html -------------------------------------------------------------------------------- /docs/source/_templates/form-no-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_templates/form-no-button.html -------------------------------------------------------------------------------- /docs/source/_templates/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_templates/form.html -------------------------------------------------------------------------------- /docs/source/_templates/icons/send-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_templates/icons/send-plus.svg -------------------------------------------------------------------------------- /docs/source/_templates/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_templates/icons/send.svg -------------------------------------------------------------------------------- /docs/source/_templates/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_templates/icons/trash.svg -------------------------------------------------------------------------------- /docs/source/_templates/urls.py.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/_templates/urls.py.jinja2 -------------------------------------------------------------------------------- /docs/source/activators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/activators.rst -------------------------------------------------------------------------------- /docs/source/admin-integration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/admin-integration.rst -------------------------------------------------------------------------------- /docs/source/alternative-widgets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/alternative-widgets.rst -------------------------------------------------------------------------------- /docs/source/buttons.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/buttons.rst -------------------------------------------------------------------------------- /docs/source/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/changes.rst -------------------------------------------------------------------------------- /docs/source/chat-gpt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/chat-gpt.rst -------------------------------------------------------------------------------- /docs/source/collection-fields.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/collection-fields.rst -------------------------------------------------------------------------------- /docs/source/conditionals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/conditionals.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/contributing.rst -------------------------------------------------------------------------------- /docs/source/country-selectize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/country-selectize.rst -------------------------------------------------------------------------------- /docs/source/dark-mode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/dark-mode.rst -------------------------------------------------------------------------------- /docs/source/date-time-input.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/date-time-input.rst -------------------------------------------------------------------------------- /docs/source/date-time-range.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/date-time-range.rst -------------------------------------------------------------------------------- /docs/source/decimal-unit-field.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/decimal-unit-field.rst -------------------------------------------------------------------------------- /docs/source/default-widgets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/default-widgets.rst -------------------------------------------------------------------------------- /docs/source/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/development.rst -------------------------------------------------------------------------------- /docs/source/dialog-forms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/dialog-forms.rst -------------------------------------------------------------------------------- /docs/source/dialog-model-forms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/dialog-model-forms.rst -------------------------------------------------------------------------------- /docs/source/django-formset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/django-formset.rst -------------------------------------------------------------------------------- /docs/source/dual-selector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/dual-selector.rst -------------------------------------------------------------------------------- /docs/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/faq.rst -------------------------------------------------------------------------------- /docs/source/fields-mapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/fields-mapping.rst -------------------------------------------------------------------------------- /docs/source/fieldsets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/fieldsets.rst -------------------------------------------------------------------------------- /docs/source/form-collections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/form-collections.rst -------------------------------------------------------------------------------- /docs/source/form-renderer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/form-renderer.rst -------------------------------------------------------------------------------- /docs/source/form-stepper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/form-stepper.rst -------------------------------------------------------------------------------- /docs/source/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/history.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/intro.rst -------------------------------------------------------------------------------- /docs/source/model-collections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/model-collections.rst -------------------------------------------------------------------------------- /docs/source/model-forms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/model-forms.rst -------------------------------------------------------------------------------- /docs/source/phone-number-field.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/phone-number-field.rst -------------------------------------------------------------------------------- /docs/source/richtext-extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/richtext-extensions.rst -------------------------------------------------------------------------------- /docs/source/richtext.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/richtext.rst -------------------------------------------------------------------------------- /docs/source/selectize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/selectize.rst -------------------------------------------------------------------------------- /docs/source/single-form.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/single-form.rst -------------------------------------------------------------------------------- /docs/source/slug-input.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/slug-input.rst -------------------------------------------------------------------------------- /docs/source/styling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/styling.rst -------------------------------------------------------------------------------- /docs/source/uploading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/uploading.rst -------------------------------------------------------------------------------- /docs/source/withholding-feedback.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/docs/source/withholding-feedback.rst -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/fly.toml -------------------------------------------------------------------------------- /formset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/__init__.py -------------------------------------------------------------------------------- /formset/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/admin.py -------------------------------------------------------------------------------- /formset/boundfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/boundfield.py -------------------------------------------------------------------------------- /formset/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/calendar.py -------------------------------------------------------------------------------- /formset/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/collection.py -------------------------------------------------------------------------------- /formset/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/dialog.py -------------------------------------------------------------------------------- /formset/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/exceptions.py -------------------------------------------------------------------------------- /formset/fieldset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/fieldset.py -------------------------------------------------------------------------------- /formset/fieldsmapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/fieldsmapping.py -------------------------------------------------------------------------------- /formset/formfields/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/formfields/__init__.py -------------------------------------------------------------------------------- /formset/formfields/activator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/formfields/activator.py -------------------------------------------------------------------------------- /formset/formfields/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/formfields/collection.py -------------------------------------------------------------------------------- /formset/formfields/ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/formfields/ranges.py -------------------------------------------------------------------------------- /formset/formfields/richtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/formfields/richtext.py -------------------------------------------------------------------------------- /formset/formfields/shadow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/formfields/shadow.py -------------------------------------------------------------------------------- /formset/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/forms.py -------------------------------------------------------------------------------- /formset/locale/af/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/af/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/ar/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/ar/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/bg/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/bg/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/ca/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/ca/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/cs/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/cs/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/da/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/da/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /formset/locale/de/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/de/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/el/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/el/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/eo/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/eo/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/es/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/es/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/et/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/et/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/eu/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/eu/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/eu_ES/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/eu_ES/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/fa/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/fa/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/fi/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/fi/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/fr/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/fr/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/he/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/he/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/he_IL/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/he_IL/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/hr/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/hr/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/hu/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/hu/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/hy/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/hy/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/it/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/it/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/ja/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/ja/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/ko_KR/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/ko_KR/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/lt/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/lt/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/lv/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/lv/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/mn/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/mn/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/nb/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/nb/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/nl/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/nl/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/pl/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/pl/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/pt_BR/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/pt_BR/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/pt_PT/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/pt_PT/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/ro/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/ro/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/ru/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/ru/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/sk/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/sk/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/sl/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/sl/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/sr/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/sr/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/sr_Latn/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/sr_Latn/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/sr_Latn_BA/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/sr_Latn_BA/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/sv/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/sv/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/tr_TR/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/tr_TR/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/uk/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/uk/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/zh_CN/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/zh_CN/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/zh_Hans/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/zh_Hans/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/locale/zh_Hant/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/locale/zh_Hant/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /formset/management/commands/cleanup_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/management/commands/cleanup_files.py -------------------------------------------------------------------------------- /formset/modelfields/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/modelfields/__init__.py -------------------------------------------------------------------------------- /formset/modelfields/richtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/modelfields/richtext.py -------------------------------------------------------------------------------- /formset/renderers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/renderers/__init__.py -------------------------------------------------------------------------------- /formset/renderers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/renderers/admin.py -------------------------------------------------------------------------------- /formset/renderers/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/renderers/bootstrap.py -------------------------------------------------------------------------------- /formset/renderers/bulma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/renderers/bulma.py -------------------------------------------------------------------------------- /formset/renderers/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/renderers/default.py -------------------------------------------------------------------------------- /formset/renderers/foundation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/renderers/foundation.py -------------------------------------------------------------------------------- /formset/renderers/tailwind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/renderers/tailwind.py -------------------------------------------------------------------------------- /formset/renderers/uikit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/renderers/uikit.py -------------------------------------------------------------------------------- /formset/richtext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /formset/richtext/controls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/richtext/controls.py -------------------------------------------------------------------------------- /formset/richtext/dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/richtext/dialogs.py -------------------------------------------------------------------------------- /formset/richtext/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/richtext/upload.py -------------------------------------------------------------------------------- /formset/static/formset/icons/file-audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/static/formset/icons/file-audio.svg -------------------------------------------------------------------------------- /formset/static/formset/icons/file-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/static/formset/icons/file-empty.svg -------------------------------------------------------------------------------- /formset/static/formset/icons/file-font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/static/formset/icons/file-font.svg -------------------------------------------------------------------------------- /formset/static/formset/icons/file-missing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/static/formset/icons/file-missing.svg -------------------------------------------------------------------------------- /formset/static/formset/icons/file-pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/static/formset/icons/file-pdf.svg -------------------------------------------------------------------------------- /formset/static/formset/icons/file-picture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/static/formset/icons/file-picture.svg -------------------------------------------------------------------------------- /formset/static/formset/icons/file-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/static/formset/icons/file-unknown.svg -------------------------------------------------------------------------------- /formset/static/formset/icons/file-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/static/formset/icons/file-video.svg -------------------------------------------------------------------------------- /formset/static/formset/icons/file-zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/static/formset/icons/file-zip.svg -------------------------------------------------------------------------------- /formset/static/formset/tiptap-extensions/footnote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/static/formset/tiptap-extensions/footnote.js -------------------------------------------------------------------------------- /formset/static/formset/tiptap-extensions/procurator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/static/formset/tiptap-extensions/procurator.js -------------------------------------------------------------------------------- /formset/static/formset/tiptap-extensions/simple_image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/static/formset/tiptap-extensions/simple_image.js -------------------------------------------------------------------------------- /formset/static/formset/tiptap-extensions/simple_link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/static/formset/tiptap-extensions/simple_link.js -------------------------------------------------------------------------------- /formset/stepper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/stepper.py -------------------------------------------------------------------------------- /formset/templates/admin/formset/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/admin/formset/change_form.html -------------------------------------------------------------------------------- /formset/templates/admin/formset/submit_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/admin/formset/submit_line.html -------------------------------------------------------------------------------- /formset/templates/calendar/hours.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/calendar/hours.html -------------------------------------------------------------------------------- /formset/templates/calendar/months.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/calendar/months.html -------------------------------------------------------------------------------- /formset/templates/calendar/range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/calendar/range.html -------------------------------------------------------------------------------- /formset/templates/calendar/weeks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/calendar/weeks.html -------------------------------------------------------------------------------- /formset/templates/calendar/years.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/calendar/years.html -------------------------------------------------------------------------------- /formset/templates/formset/admin/buttons/add_collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/admin/buttons/add_collection.html -------------------------------------------------------------------------------- /formset/templates/formset/admin/collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/admin/collection.html -------------------------------------------------------------------------------- /formset/templates/formset/admin/field_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/admin/field_group.html -------------------------------------------------------------------------------- /formset/templates/formset/admin/fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/admin/fieldset.html -------------------------------------------------------------------------------- /formset/templates/formset/admin/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/admin/form.html -------------------------------------------------------------------------------- /formset/templates/formset/admin/help_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/admin/help_text.html -------------------------------------------------------------------------------- /formset/templates/formset/admin/widgets/dual_selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/admin/widgets/dual_selector.html -------------------------------------------------------------------------------- /formset/templates/formset/admin/widgets/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/admin/widgets/file.html -------------------------------------------------------------------------------- /formset/templates/formset/bootstrap/buttons/add_collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bootstrap/buttons/add_collection.html -------------------------------------------------------------------------------- /formset/templates/formset/bootstrap/buttons/remove_collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bootstrap/buttons/remove_collection.html -------------------------------------------------------------------------------- /formset/templates/formset/bootstrap/buttons/richtext_align.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bootstrap/buttons/richtext_align.html -------------------------------------------------------------------------------- /formset/templates/formset/bootstrap/buttons/richtext_color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bootstrap/buttons/richtext_color.html -------------------------------------------------------------------------------- /formset/templates/formset/bootstrap/buttons/richtext_heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bootstrap/buttons/richtext_heading.html -------------------------------------------------------------------------------- /formset/templates/formset/bootstrap/collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bootstrap/collection.html -------------------------------------------------------------------------------- /formset/templates/formset/bootstrap/field_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bootstrap/field_group.html -------------------------------------------------------------------------------- /formset/templates/formset/bootstrap/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bootstrap/form.html -------------------------------------------------------------------------------- /formset/templates/formset/bootstrap/help_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bootstrap/help_text.html -------------------------------------------------------------------------------- /formset/templates/formset/bootstrap/widgets/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bootstrap/widgets/checkbox.html -------------------------------------------------------------------------------- /formset/templates/formset/bootstrap/widgets/collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bootstrap/widgets/collection.html -------------------------------------------------------------------------------- /formset/templates/formset/bootstrap/widgets/dual_selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bootstrap/widgets/dual_selector.html -------------------------------------------------------------------------------- /formset/templates/formset/bootstrap/widgets/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bootstrap/widgets/file.html -------------------------------------------------------------------------------- /formset/templates/formset/bootstrap/widgets/input_option.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bootstrap/widgets/input_option.html -------------------------------------------------------------------------------- /formset/templates/formset/bootstrap/widgets/multiple_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bootstrap/widgets/multiple_input.html -------------------------------------------------------------------------------- /formset/templates/formset/bootstrap/widgets/richtextarea.html: -------------------------------------------------------------------------------- 1 | {% extends "formset/default/widgets/richtextarea.html" %} 2 | -------------------------------------------------------------------------------- /formset/templates/formset/bulma/buttons/add_collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bulma/buttons/add_collection.html -------------------------------------------------------------------------------- /formset/templates/formset/bulma/buttons/remove_collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bulma/buttons/remove_collection.html -------------------------------------------------------------------------------- /formset/templates/formset/bulma/collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bulma/collection.html -------------------------------------------------------------------------------- /formset/templates/formset/bulma/field_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bulma/field_group.html -------------------------------------------------------------------------------- /formset/templates/formset/bulma/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bulma/form.html -------------------------------------------------------------------------------- /formset/templates/formset/bulma/widgets/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bulma/widgets/checkbox.html -------------------------------------------------------------------------------- /formset/templates/formset/bulma/widgets/collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bulma/widgets/collection.html -------------------------------------------------------------------------------- /formset/templates/formset/bulma/widgets/dual_selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bulma/widgets/dual_selector.html -------------------------------------------------------------------------------- /formset/templates/formset/bulma/widgets/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bulma/widgets/file.html -------------------------------------------------------------------------------- /formset/templates/formset/bulma/widgets/input_option.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bulma/widgets/input_option.html -------------------------------------------------------------------------------- /formset/templates/formset/bulma/widgets/multiple_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bulma/widgets/multiple_input.html -------------------------------------------------------------------------------- /formset/templates/formset/bulma/widgets/select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/bulma/widgets/select.html -------------------------------------------------------------------------------- /formset/templates/formset/default/buttons/add_collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/buttons/add_collection.html -------------------------------------------------------------------------------- /formset/templates/formset/default/buttons/move_all_left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/buttons/move_all_left.html -------------------------------------------------------------------------------- /formset/templates/formset/default/buttons/move_all_right.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/buttons/move_all_right.html -------------------------------------------------------------------------------- /formset/templates/formset/default/buttons/move_selected_left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/buttons/move_selected_left.html -------------------------------------------------------------------------------- /formset/templates/formset/default/buttons/move_selected_right.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/buttons/move_selected_right.html -------------------------------------------------------------------------------- /formset/templates/formset/default/buttons/redo_assignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/buttons/redo_assignment.html -------------------------------------------------------------------------------- /formset/templates/formset/default/buttons/remove_collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/buttons/remove_collection.html -------------------------------------------------------------------------------- /formset/templates/formset/default/buttons/undo_assignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/buttons/undo_assignment.html -------------------------------------------------------------------------------- /formset/templates/formset/default/collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/collection.html -------------------------------------------------------------------------------- /formset/templates/formset/default/detached_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/detached_field.html -------------------------------------------------------------------------------- /formset/templates/formset/default/field_errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/field_errors.html -------------------------------------------------------------------------------- /formset/templates/formset/default/field_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/field_group.html -------------------------------------------------------------------------------- /formset/templates/formset/default/fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/fieldset.html -------------------------------------------------------------------------------- /formset/templates/formset/default/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/form.html -------------------------------------------------------------------------------- /formset/templates/formset/default/form_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/form_dialog.html -------------------------------------------------------------------------------- /formset/templates/formset/default/help_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/help_text.html -------------------------------------------------------------------------------- /formset/templates/formset/default/stepper_collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/stepper_collection.html -------------------------------------------------------------------------------- /formset/templates/formset/default/widgets/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/widgets/button.html -------------------------------------------------------------------------------- /formset/templates/formset/default/widgets/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/widgets/calendar.html -------------------------------------------------------------------------------- /formset/templates/formset/default/widgets/collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/widgets/collection.html -------------------------------------------------------------------------------- /formset/templates/formset/default/widgets/datetime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/widgets/datetime.html -------------------------------------------------------------------------------- /formset/templates/formset/default/widgets/dual_selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/widgets/dual_selector.html -------------------------------------------------------------------------------- /formset/templates/formset/default/widgets/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/widgets/file.html -------------------------------------------------------------------------------- /formset/templates/formset/default/widgets/multiple_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/widgets/multiple_input.html -------------------------------------------------------------------------------- /formset/templates/formset/default/widgets/richtextarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/widgets/richtextarea.html -------------------------------------------------------------------------------- /formset/templates/formset/default/widgets/select.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/select.html" %} -------------------------------------------------------------------------------- /formset/templates/formset/default/widgets/selectize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/widgets/selectize.html -------------------------------------------------------------------------------- /formset/templates/formset/default/widgets/selectize_country.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/default/widgets/selectize_country.html -------------------------------------------------------------------------------- /formset/templates/formset/form_attrs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/form_attrs.html -------------------------------------------------------------------------------- /formset/templates/formset/foundation/buttons/add_collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/foundation/buttons/add_collection.html -------------------------------------------------------------------------------- /formset/templates/formset/foundation/buttons/remove_collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/foundation/buttons/remove_collection.html -------------------------------------------------------------------------------- /formset/templates/formset/foundation/collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/foundation/collection.html -------------------------------------------------------------------------------- /formset/templates/formset/foundation/field_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/foundation/field_group.html -------------------------------------------------------------------------------- /formset/templates/formset/foundation/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/foundation/form.html -------------------------------------------------------------------------------- /formset/templates/formset/foundation/widgets/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/foundation/widgets/checkbox.html -------------------------------------------------------------------------------- /formset/templates/formset/foundation/widgets/collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/foundation/widgets/collection.html -------------------------------------------------------------------------------- /formset/templates/formset/foundation/widgets/dual_selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/foundation/widgets/dual_selector.html -------------------------------------------------------------------------------- /formset/templates/formset/foundation/widgets/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/foundation/widgets/file.html -------------------------------------------------------------------------------- /formset/templates/formset/foundation/widgets/inlined_input_option.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/foundation/widgets/inlined_input_option.html -------------------------------------------------------------------------------- /formset/templates/formset/foundation/widgets/multiple_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/foundation/widgets/multiple_input.html -------------------------------------------------------------------------------- /formset/templates/formset/icons/activator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/activator.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/add-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/add-fill.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/align-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/align-center.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/align-justify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/align-justify.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/align-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/align-left.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/align-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/align-right.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/arrow-left.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/arrow-right.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/arrow-up.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/blockquote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/blockquote.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/bold.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/bulletlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/bulletlist.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/calendar-today.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/chevron-double-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/chevron-double-left.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/chevron-double-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/chevron-double-right.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/chevron-left.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/chevron-right.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/clearformat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/clearformat.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/codeblock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/codeblock.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/decreasemargin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/decreasemargin.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/delete-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/delete-back.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/double-chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/double-chevron-left.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/double-chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/double-chevron-right.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/font-family.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/font-family.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/font-size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/font-size.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/footnote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/footnote.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/hardbreak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/hardbreak.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/heading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/heading.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/heading1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/heading1.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/heading2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/heading2.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/heading3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/heading3.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/heading4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/heading4.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/heading5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/heading5.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/heading6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/heading6.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/horizontalrule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/horizontalrule.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/image.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/increasemargin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/increasemargin.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/indentfirstline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/indentfirstline.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/italic.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/letters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/letters.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/line-height.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/line-height.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/link.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/orderedlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/orderedlist.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/outdentfirstline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/outdentfirstline.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/placeholder.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/questionmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/questionmark.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/redo.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/reset.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/send.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/separator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/separator.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/strike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/strike.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/subscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/subscript.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/superscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/superscript.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/textcolor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/textcolor.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/trash.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/underline.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/undo.svg -------------------------------------------------------------------------------- /formset/templates/formset/icons/unlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/icons/unlink.svg -------------------------------------------------------------------------------- /formset/templates/formset/non_field_errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/non_field_errors.html -------------------------------------------------------------------------------- /formset/templates/formset/richtext/align.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/richtext/align.html -------------------------------------------------------------------------------- /formset/templates/formset/richtext/class_based.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/richtext/class_based.html -------------------------------------------------------------------------------- /formset/templates/formset/richtext/color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/richtext/color.html -------------------------------------------------------------------------------- /formset/templates/formset/richtext/control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/richtext/control.html -------------------------------------------------------------------------------- /formset/templates/formset/richtext/control_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/richtext/control_group.html -------------------------------------------------------------------------------- /formset/templates/formset/richtext/dialog_control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/richtext/dialog_control.html -------------------------------------------------------------------------------- /formset/templates/formset/richtext/form_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/richtext/form_dialog.html -------------------------------------------------------------------------------- /formset/templates/formset/richtext/heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/richtext/heading.html -------------------------------------------------------------------------------- /formset/templates/formset/richtext/separator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/richtext/separator.html -------------------------------------------------------------------------------- /formset/templates/formset/tailwind/buttons/add_collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/tailwind/buttons/add_collection.html -------------------------------------------------------------------------------- /formset/templates/formset/tailwind/buttons/remove_collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/tailwind/buttons/remove_collection.html -------------------------------------------------------------------------------- /formset/templates/formset/tailwind/collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/tailwind/collection.html -------------------------------------------------------------------------------- /formset/templates/formset/tailwind/field_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/tailwind/field_group.html -------------------------------------------------------------------------------- /formset/templates/formset/tailwind/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/tailwind/form.html -------------------------------------------------------------------------------- /formset/templates/formset/tailwind/help_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/tailwind/help_text.html -------------------------------------------------------------------------------- /formset/templates/formset/tailwind/widgets/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/tailwind/widgets/checkbox.html -------------------------------------------------------------------------------- /formset/templates/formset/tailwind/widgets/collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/tailwind/widgets/collection.html -------------------------------------------------------------------------------- /formset/templates/formset/tailwind/widgets/dual_selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/tailwind/widgets/dual_selector.html -------------------------------------------------------------------------------- /formset/templates/formset/tailwind/widgets/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/tailwind/widgets/file.html -------------------------------------------------------------------------------- /formset/templates/formset/tailwind/widgets/input_option.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/tailwind/widgets/input_option.html -------------------------------------------------------------------------------- /formset/templates/formset/tailwind/widgets/multiple_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/tailwind/widgets/multiple_input.html -------------------------------------------------------------------------------- /formset/templates/formset/tailwind/widgets/radio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/tailwind/widgets/radio.html -------------------------------------------------------------------------------- /formset/templates/formset/uikit/buttons/add_collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/uikit/buttons/add_collection.html -------------------------------------------------------------------------------- /formset/templates/formset/uikit/buttons/remove_collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/uikit/buttons/remove_collection.html -------------------------------------------------------------------------------- /formset/templates/formset/uikit/collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/uikit/collection.html -------------------------------------------------------------------------------- /formset/templates/formset/uikit/field_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/uikit/field_group.html -------------------------------------------------------------------------------- /formset/templates/formset/uikit/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/uikit/form.html -------------------------------------------------------------------------------- /formset/templates/formset/uikit/widgets/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/uikit/widgets/checkbox.html -------------------------------------------------------------------------------- /formset/templates/formset/uikit/widgets/collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/uikit/widgets/collection.html -------------------------------------------------------------------------------- /formset/templates/formset/uikit/widgets/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/uikit/widgets/file.html -------------------------------------------------------------------------------- /formset/templates/formset/uikit/widgets/input_option.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/uikit/widgets/input_option.html -------------------------------------------------------------------------------- /formset/templates/formset/uikit/widgets/multiple_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/formset/uikit/widgets/multiple_input.html -------------------------------------------------------------------------------- /formset/templates/richtext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/richtext/README.md -------------------------------------------------------------------------------- /formset/templates/richtext/bulletlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/richtext/bulletlist.html -------------------------------------------------------------------------------- /formset/templates/richtext/doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/richtext/doc.html -------------------------------------------------------------------------------- /formset/templates/richtext/footnote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/richtext/footnote.html -------------------------------------------------------------------------------- /formset/templates/richtext/footnote_ref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/richtext/footnote_ref.html -------------------------------------------------------------------------------- /formset/templates/richtext/footnotes_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/richtext/footnotes_list.html -------------------------------------------------------------------------------- /formset/templates/richtext/heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/richtext/heading.html -------------------------------------------------------------------------------- /formset/templates/richtext/horizontalrule.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /formset/templates/richtext/listitem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/richtext/listitem.html -------------------------------------------------------------------------------- /formset/templates/richtext/marks/bold.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/richtext/marks/bold.html -------------------------------------------------------------------------------- /formset/templates/richtext/marks/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/richtext/marks/code.html -------------------------------------------------------------------------------- /formset/templates/richtext/marks/italic.html: -------------------------------------------------------------------------------- 1 | {{ text }} -------------------------------------------------------------------------------- /formset/templates/richtext/marks/procurator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/richtext/marks/procurator.html -------------------------------------------------------------------------------- /formset/templates/richtext/marks/simple_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/richtext/marks/simple_link.html -------------------------------------------------------------------------------- /formset/templates/richtext/marks/textcolor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/richtext/marks/textcolor.html -------------------------------------------------------------------------------- /formset/templates/richtext/marks/underline.html: -------------------------------------------------------------------------------- 1 | {{ text }} -------------------------------------------------------------------------------- /formset/templates/richtext/orderedlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/richtext/orderedlist.html -------------------------------------------------------------------------------- /formset/templates/richtext/paragraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/richtext/paragraph.html -------------------------------------------------------------------------------- /formset/templates/richtext/text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templates/richtext/text.html -------------------------------------------------------------------------------- /formset/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /formset/templatetags/formset_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templatetags/formset_admin.py -------------------------------------------------------------------------------- /formset/templatetags/formsetify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templatetags/formsetify.py -------------------------------------------------------------------------------- /formset/templatetags/phonenumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templatetags/phonenumber.py -------------------------------------------------------------------------------- /formset/templatetags/richtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/templatetags/richtext.py -------------------------------------------------------------------------------- /formset/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/upload.py -------------------------------------------------------------------------------- /formset/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/utils.py -------------------------------------------------------------------------------- /formset/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/validators.py -------------------------------------------------------------------------------- /formset/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/views.py -------------------------------------------------------------------------------- /formset/widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/widgets/__init__.py -------------------------------------------------------------------------------- /formset/widgets/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/widgets/button.py -------------------------------------------------------------------------------- /formset/widgets/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/widgets/collection.py -------------------------------------------------------------------------------- /formset/widgets/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/widgets/datetime.py -------------------------------------------------------------------------------- /formset/widgets/decimalunit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/widgets/decimalunit.py -------------------------------------------------------------------------------- /formset/widgets/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/widgets/models.py -------------------------------------------------------------------------------- /formset/widgets/phonenumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/widgets/phonenumber.py -------------------------------------------------------------------------------- /formset/widgets/ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/widgets/ranges.py -------------------------------------------------------------------------------- /formset/widgets/richtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/widgets/richtext.py -------------------------------------------------------------------------------- /formset/widgets/slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/widgets/slug.py -------------------------------------------------------------------------------- /formset/widgets/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/formset/widgets/upload.py -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/package.json -------------------------------------------------------------------------------- /readmeimg/bootstrap-actions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/readmeimg/bootstrap-actions.gif -------------------------------------------------------------------------------- /readmeimg/bootstrap-address-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/readmeimg/bootstrap-address-horizontal.png -------------------------------------------------------------------------------- /readmeimg/bootstrap-address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/readmeimg/bootstrap-address.png -------------------------------------------------------------------------------- /readmeimg/bootstrap-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/readmeimg/bootstrap-contact.png -------------------------------------------------------------------------------- /readmeimg/bootstrap-multiple-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/readmeimg/bootstrap-multiple-input.png -------------------------------------------------------------------------------- /readmeimg/bootstrap-upload-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/readmeimg/bootstrap-upload-empty.png -------------------------------------------------------------------------------- /readmeimg/bootstrap-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/readmeimg/bootstrap-upload.png -------------------------------------------------------------------------------- /readmeimg/richtext-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/readmeimg/richtext-editor.png -------------------------------------------------------------------------------- /readmeimg/tailwind-address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/readmeimg/tailwind-address.png -------------------------------------------------------------------------------- /readmeimg/tailwind-dual-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/readmeimg/tailwind-dual-selector.png -------------------------------------------------------------------------------- /readmeimg/tailwind-selectize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/readmeimg/tailwind-selectize.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/setup.py -------------------------------------------------------------------------------- /testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/admin.py -------------------------------------------------------------------------------- /testapp/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/asgi.py -------------------------------------------------------------------------------- /testapp/assets/broken-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/assets/broken-image.jpg -------------------------------------------------------------------------------- /testapp/assets/dummy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/assets/dummy.pdf -------------------------------------------------------------------------------- /testapp/assets/python-django.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/assets/python-django.png -------------------------------------------------------------------------------- /testapp/demo_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/demo_helpers.py -------------------------------------------------------------------------------- /testapp/fixtures/counties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/fixtures/counties.json -------------------------------------------------------------------------------- /testapp/fixtures/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/fixtures/pages.json -------------------------------------------------------------------------------- /testapp/fixtures/reporters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/fixtures/reporters.json -------------------------------------------------------------------------------- /testapp/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/forms/accordion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/accordion.py -------------------------------------------------------------------------------- /testapp/forms/address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/address.py -------------------------------------------------------------------------------- /testapp/forms/advertisement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/advertisement.py -------------------------------------------------------------------------------- /testapp/forms/article.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/article.py -------------------------------------------------------------------------------- /testapp/forms/birthdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/birthdate.py -------------------------------------------------------------------------------- /testapp/forms/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/blog.py -------------------------------------------------------------------------------- /testapp/forms/booking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/booking.py -------------------------------------------------------------------------------- /testapp/forms/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/button.py -------------------------------------------------------------------------------- /testapp/forms/cafeteria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/cafeteria.py -------------------------------------------------------------------------------- /testapp/forms/carousel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/carousel.py -------------------------------------------------------------------------------- /testapp/forms/checkout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/checkout.py -------------------------------------------------------------------------------- /testapp/forms/company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/company.py -------------------------------------------------------------------------------- /testapp/forms/complete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/complete.py -------------------------------------------------------------------------------- /testapp/forms/contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/contact.py -------------------------------------------------------------------------------- /testapp/forms/country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/country.py -------------------------------------------------------------------------------- /testapp/forms/county.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/county.py -------------------------------------------------------------------------------- /testapp/forms/customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/customer.py -------------------------------------------------------------------------------- /testapp/forms/gallerycollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/gallerycollection.py -------------------------------------------------------------------------------- /testapp/forms/galleryform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/galleryform.py -------------------------------------------------------------------------------- /testapp/forms/issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/issue.py -------------------------------------------------------------------------------- /testapp/forms/moment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/moment.py -------------------------------------------------------------------------------- /testapp/forms/moon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/moon.py -------------------------------------------------------------------------------- /testapp/forms/opinion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/opinion.py -------------------------------------------------------------------------------- /testapp/forms/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/person.py -------------------------------------------------------------------------------- /testapp/forms/phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/phone.py -------------------------------------------------------------------------------- /testapp/forms/poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/poll.py -------------------------------------------------------------------------------- /testapp/forms/price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/price.py -------------------------------------------------------------------------------- /testapp/forms/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/product.py -------------------------------------------------------------------------------- /testapp/forms/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/profile.py -------------------------------------------------------------------------------- /testapp/forms/questionnaire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/questionnaire.py -------------------------------------------------------------------------------- /testapp/forms/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/schedule.py -------------------------------------------------------------------------------- /testapp/forms/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/state.py -------------------------------------------------------------------------------- /testapp/forms/terms_of_use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/terms_of_use.py -------------------------------------------------------------------------------- /testapp/forms/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/upload.py -------------------------------------------------------------------------------- /testapp/forms/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/forms/user.py -------------------------------------------------------------------------------- /testapp/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/manage.py -------------------------------------------------------------------------------- /testapp/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/middleware.py -------------------------------------------------------------------------------- /testapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/models/__init__.py -------------------------------------------------------------------------------- /testapp/models/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/models/annotation.py -------------------------------------------------------------------------------- /testapp/models/article.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/models/article.py -------------------------------------------------------------------------------- /testapp/models/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/models/blog.py -------------------------------------------------------------------------------- /testapp/models/company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/models/company.py -------------------------------------------------------------------------------- /testapp/models/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/models/component.py -------------------------------------------------------------------------------- /testapp/models/county.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/models/county.py -------------------------------------------------------------------------------- /testapp/models/gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/models/gallery.py -------------------------------------------------------------------------------- /testapp/models/issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/models/issue.py -------------------------------------------------------------------------------- /testapp/models/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/models/page.py -------------------------------------------------------------------------------- /testapp/models/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/models/person.py -------------------------------------------------------------------------------- /testapp/models/poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/models/poll.py -------------------------------------------------------------------------------- /testapp/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/models/product.py -------------------------------------------------------------------------------- /testapp/models/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/models/reporter.py -------------------------------------------------------------------------------- /testapp/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/models/user.py -------------------------------------------------------------------------------- /testapp/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/pytest.ini -------------------------------------------------------------------------------- /testapp/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/requirements.txt -------------------------------------------------------------------------------- /testapp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/settings.py -------------------------------------------------------------------------------- /testapp/static/testapp/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/static/testapp/css/bootstrap.css -------------------------------------------------------------------------------- /testapp/static/testapp/css/bulma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/static/testapp/css/bulma.css -------------------------------------------------------------------------------- /testapp/static/testapp/css/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/static/testapp/css/debug.css -------------------------------------------------------------------------------- /testapp/static/testapp/css/foundation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/static/testapp/css/foundation.css -------------------------------------------------------------------------------- /testapp/static/testapp/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/static/testapp/css/tailwind.css -------------------------------------------------------------------------------- /testapp/static/testapp/css/uikit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/static/testapp/css/uikit.css -------------------------------------------------------------------------------- /testapp/static/testapp/css/utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/static/testapp/css/utils.css -------------------------------------------------------------------------------- /testapp/static/testapp/js/bootstrap-auto-dark-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/static/testapp/js/bootstrap-auto-dark-mode.js -------------------------------------------------------------------------------- /testapp/static/testapp/tiptap-extensions/custom_hyperlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/static/testapp/tiptap-extensions/custom_hyperlink.js -------------------------------------------------------------------------------- /testapp/static/testapp/tiptap-extensions/custom_image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/static/testapp/tiptap-extensions/custom_image.js -------------------------------------------------------------------------------- /testapp/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/storage.py -------------------------------------------------------------------------------- /testapp/templates/alternative-richtext/doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/alternative-richtext/doc.html -------------------------------------------------------------------------------- /testapp/templates/bootstrap/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/bootstrap/base.html -------------------------------------------------------------------------------- /testapp/templates/bootstrap/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/bootstrap/buttons.html -------------------------------------------------------------------------------- /testapp/templates/bootstrap/person-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/bootstrap/person-form.html -------------------------------------------------------------------------------- /testapp/templates/bulma/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/bulma/base.html -------------------------------------------------------------------------------- /testapp/templates/bulma/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/bulma/buttons.html -------------------------------------------------------------------------------- /testapp/templates/calendar/weeks-moon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/calendar/weeks-moon.html -------------------------------------------------------------------------------- /testapp/templates/calendar/weeks-reservation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/calendar/weeks-reservation.html -------------------------------------------------------------------------------- /testapp/templates/docutils.txt: -------------------------------------------------------------------------------- 1 | %(body)s 2 | -------------------------------------------------------------------------------- /testapp/templates/foundation/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/foundation/base.html -------------------------------------------------------------------------------- /testapp/templates/foundation/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/foundation/buttons.html -------------------------------------------------------------------------------- /testapp/templates/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/icons.html -------------------------------------------------------------------------------- /testapp/templates/landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/landing.html -------------------------------------------------------------------------------- /testapp/templates/richtext/marks/custom_hyperlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/richtext/marks/custom_hyperlink.html -------------------------------------------------------------------------------- /testapp/templates/sphinx_view/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/sphinx_view/base.html -------------------------------------------------------------------------------- /testapp/templates/sphinx_view/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/sphinx_view/page.html -------------------------------------------------------------------------------- /testapp/templates/sphinx_view/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/sphinx_view/search.html -------------------------------------------------------------------------------- /testapp/templates/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/success.html -------------------------------------------------------------------------------- /testapp/templates/tailwind/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/tailwind/base.html -------------------------------------------------------------------------------- /testapp/templates/tailwind/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/tailwind/buttons.html -------------------------------------------------------------------------------- /testapp/templates/testapp/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/testapp/base.html -------------------------------------------------------------------------------- /testapp/templates/testapp/button-actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/testapp/button-actions.html -------------------------------------------------------------------------------- /testapp/templates/testapp/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/testapp/buttons.html -------------------------------------------------------------------------------- /testapp/templates/testapp/extended-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/testapp/extended-form.html -------------------------------------------------------------------------------- /testapp/templates/testapp/field-by-field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/testapp/field-by-field.html -------------------------------------------------------------------------------- /testapp/templates/testapp/form-collection-no-buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/testapp/form-collection-no-buttons.html -------------------------------------------------------------------------------- /testapp/templates/testapp/form-collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/testapp/form-collection.html -------------------------------------------------------------------------------- /testapp/templates/testapp/formset-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/testapp/formset-data.html -------------------------------------------------------------------------------- /testapp/templates/testapp/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/testapp/house.svg -------------------------------------------------------------------------------- /testapp/templates/testapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/testapp/index.html -------------------------------------------------------------------------------- /testapp/templates/testapp/margin-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/testapp/margin-bottom.svg -------------------------------------------------------------------------------- /testapp/templates/testapp/native-form-no-buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/testapp/native-form-no-buttons.html -------------------------------------------------------------------------------- /testapp/templates/testapp/native-form-tiptap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/testapp/native-form-tiptap.html -------------------------------------------------------------------------------- /testapp/templates/testapp/native-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/testapp/native-form.html -------------------------------------------------------------------------------- /testapp/templates/testapp/tiptap-alternative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/testapp/tiptap-alternative.html -------------------------------------------------------------------------------- /testapp/templates/testapp/tiptap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/testapp/tiptap.html -------------------------------------------------------------------------------- /testapp/templates/uikit/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/uikit/base.html -------------------------------------------------------------------------------- /testapp/templates/uikit/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templates/uikit/buttons.html -------------------------------------------------------------------------------- /testapp/templatetags/hyperlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/templatetags/hyperlink.py -------------------------------------------------------------------------------- /testapp/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/conftest.py -------------------------------------------------------------------------------- /testapp/tests/test_classlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_classlist.py -------------------------------------------------------------------------------- /testapp/tests/test_component_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_component_field.py -------------------------------------------------------------------------------- /testapp/tests/test_datetime_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_datetime_field.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_admin.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_button.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_collections.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_datetimepicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_datetimepicker.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_datetimerange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_datetimerange.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_decimalunit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_decimalunit.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_dialog.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_dialogmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_dialogmodel.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_dual_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_dual_selector.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_fields.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_fieldset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_fieldset.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_form.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_nested.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_operability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_operability.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_optgroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_optgroups.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_phonenumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_phonenumber.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_preselection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_preselection.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_richtextarea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_richtextarea.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_selectize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_selectize.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_slugfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_slugfield.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_stepper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_stepper.py -------------------------------------------------------------------------------- /testapp/tests/test_e2e_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_e2e_upload.py -------------------------------------------------------------------------------- /testapp/tests/test_fields_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_fields_mapping.py -------------------------------------------------------------------------------- /testapp/tests/test_model_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_model_forms.py -------------------------------------------------------------------------------- /testapp/tests/test_nested_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_nested_collections.py -------------------------------------------------------------------------------- /testapp/tests/test_phone_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_phone_number.py -------------------------------------------------------------------------------- /testapp/tests/test_render_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_render_fields.py -------------------------------------------------------------------------------- /testapp/tests/test_render_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_render_forms.py -------------------------------------------------------------------------------- /testapp/tests/test_render_richtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/test_render_richtext.py -------------------------------------------------------------------------------- /testapp/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/tests/utils.py -------------------------------------------------------------------------------- /testapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/urls.py -------------------------------------------------------------------------------- /testapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/views.py -------------------------------------------------------------------------------- /testapp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/testapp/wsgi.py -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrief/django-formset/HEAD/tsconfig.json --------------------------------------------------------------------------------