├── .eslintrc.js ├── .gitignore ├── .readthedocs.yaml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── djaoapp.xml ├── djaoapp ├── __init__.py ├── api │ ├── __init__.py │ ├── auth.py │ ├── contact.py │ ├── custom_themes.py │ ├── notifications.py │ ├── organizations.py │ ├── roles.py │ ├── serializers.py │ ├── todos.py │ └── users.py ├── api_docs │ ├── __init__.py │ ├── schemas.py │ ├── template.txt │ └── views.py ├── compat.py ├── context_processors.py ├── decorators.py ├── edition_tools.py ├── extras │ ├── __init__.py │ ├── extended_templates.py │ ├── rules.py │ ├── saas.py │ └── signup.py ├── fixtures │ ├── 100-balance-due.json │ ├── 110-balance-checkout.json │ ├── 120-subscriptions.json │ ├── 130-subscriptions.json │ ├── 150-subscriptions.json │ ├── 160-renewals.json │ ├── 160-subscriptions.json │ ├── 170-billing.json │ ├── 180-auth.json │ ├── 20-broker-subscriptions.json │ ├── 200-saas-roles.json │ ├── 40-provider-subscriptions.json │ ├── 50-saas-profiles.json │ ├── 55-saas-roles.json │ ├── 60-djaoapp-register.json │ ├── 70-visit-card2.json │ ├── DESCRIPTION │ ├── authdisabled-db.json │ ├── cowork-db.json │ ├── default-db.json │ ├── initial_data.json │ ├── livedemo-db.json │ └── noregistration-db.json ├── forms │ ├── __init__.py │ ├── custom_signup.py │ └── profile.py ├── jinja2.py ├── locale │ ├── es │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── django.po │ └── pt │ │ └── LC_MESSAGES │ │ └── django.po ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── decode_session.py │ │ ├── generate_api_examples.py │ │ ├── generate_assets_paths.py │ │ ├── load_test_transactions.py │ │ └── makemessages.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ ├── adjustments1-sqlite3.sql │ └── adjustments2-sqlite3.sql ├── mixins.py ├── notifications │ ├── __init__.py │ ├── backends │ │ ├── __init__.py │ │ ├── email.py │ │ └── webhook.py │ ├── base.py │ ├── serializers.py │ └── signals.py ├── pagination.py ├── settings.py ├── signals.py ├── static │ ├── img │ │ ├── american-express-curved-32px.png │ │ ├── construction-banner.svg │ │ ├── dash-icons │ │ │ ├── billing.svg │ │ │ ├── connected.svg │ │ │ ├── coupons.svg │ │ │ ├── dashboard.svg │ │ │ ├── funds.svg │ │ │ ├── notifications.svg │ │ │ ├── plans.svg │ │ │ ├── revenue.svg │ │ │ ├── rules.svg │ │ │ ├── subscribers.svg │ │ │ ├── subscriptions.svg │ │ │ ├── themes.svg │ │ │ └── user.svg │ │ ├── default-organization.png │ │ ├── default-user.png │ │ ├── discover-curved-32px.png │ │ ├── fa-code.png │ │ ├── fa-picture.png │ │ ├── favicon.ico │ │ ├── logo-djaodjin-darkmode-320.png │ │ ├── mastercard-curved-32px.png │ │ ├── sf-golden-gate.png │ │ └── visa-curved-32px.png │ ├── js │ │ ├── djaoapp-i18n.js │ │ ├── djaoapp-theme-color-mode.js │ │ ├── djaodjin-dashboard.js │ │ ├── djaodjin-djaoapp-vue.js │ │ ├── djaodjin-menubar.js │ │ ├── djaodjin-metrics.js │ │ └── djaodjin-plan-edition.js │ ├── scss │ │ ├── base │ │ │ ├── base.scss │ │ │ ├── djaodjin-dashboard.scss │ │ │ ├── djaodjin-menubar.scss │ │ │ └── mallspace.scss │ │ ├── dashboard │ │ │ └── dashboard.scss │ │ ├── email │ │ │ ├── email-theme.scss │ │ │ └── email.scss │ │ ├── pages │ │ │ └── pages.scss │ │ └── vendor │ │ │ ├── bootstrap-colorpicker.scss │ │ │ ├── bootstrap │ │ │ ├── _accordion.scss │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _containers.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _functions.scss │ │ │ ├── _grid.scss │ │ │ ├── _helpers.scss │ │ │ ├── _images.scss │ │ │ ├── _list-group.scss │ │ │ ├── _maps.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _offcanvas.scss │ │ │ ├── _pagination.scss │ │ │ ├── _placeholders.scss │ │ │ ├── _popover.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _root.scss │ │ │ ├── _spinners.scss │ │ │ ├── _tables.scss │ │ │ ├── _toasts.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables-dark.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap-utilities.scss │ │ │ ├── bootstrap.scss │ │ │ ├── forms │ │ │ │ ├── _floating-labels.scss │ │ │ │ ├── _form-check.scss │ │ │ │ ├── _form-control.scss │ │ │ │ ├── _form-range.scss │ │ │ │ ├── _form-select.scss │ │ │ │ ├── _form-text.scss │ │ │ │ ├── _input-group.scss │ │ │ │ ├── _labels.scss │ │ │ │ └── _validation.scss │ │ │ ├── helpers │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _color-bg.scss │ │ │ │ ├── _colored-links.scss │ │ │ │ ├── _focus-ring.scss │ │ │ │ ├── _icon-link.scss │ │ │ │ ├── _position.scss │ │ │ │ ├── _ratio.scss │ │ │ │ ├── _stacks.scss │ │ │ │ ├── _stretched-link.scss │ │ │ │ ├── _text-truncation.scss │ │ │ │ ├── _visually-hidden.scss │ │ │ │ └── _vr.scss │ │ │ ├── mixins │ │ │ │ ├── _alert.scss │ │ │ │ ├── _backdrop.scss │ │ │ │ ├── _banner.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _box-shadow.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _caret.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _color-mode.scss │ │ │ │ ├── _color-scheme.scss │ │ │ │ ├── _container.scss │ │ │ │ ├── _deprecate.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _lists.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _reset-text.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _table-variants.scss │ │ │ │ ├── _text-truncate.scss │ │ │ │ ├── _transition.scss │ │ │ │ ├── _utilities.scss │ │ │ │ └── _visually-hidden.scss │ │ │ ├── tests │ │ │ │ ├── jasmine.js │ │ │ │ ├── mixins │ │ │ │ │ ├── _color-modes.test.scss │ │ │ │ │ ├── _media-query-color-mode-full.test.scss │ │ │ │ │ └── _utilities.test.scss │ │ │ │ ├── sass-true │ │ │ │ │ ├── register.js │ │ │ │ │ └── runner.js │ │ │ │ └── utilities │ │ │ │ │ └── _api.test.scss │ │ │ ├── utilities │ │ │ │ └── _api.scss │ │ │ └── vendor │ │ │ │ └── _rfs.scss │ │ │ ├── djaodjin-extended-templates │ │ │ ├── djaodjin-editor.scss │ │ │ ├── djaodjin-sidebar-gallery.scss │ │ │ └── djaodjin-style-editor.scss │ │ │ ├── font-awesome.scss │ │ │ ├── jquery-ui.scss │ │ │ ├── nv.d3.scss │ │ │ ├── tagify.scss │ │ │ └── trip.scss │ └── vendor │ │ ├── djaodjin-annotate.js │ │ ├── hallo.js │ │ ├── jquery-ui.js │ │ ├── jquery.ba-throttle-debounce.js │ │ ├── jquery.textarea_autosize.js │ │ ├── nv.d3.js │ │ └── rangy-core.js ├── templates │ ├── 400.html │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── _generic_navbar.html │ ├── _menubar.html │ ├── _pagination.html │ ├── _password_strength_scripts.html │ ├── accounts │ │ ├── activate │ │ │ ├── index.html │ │ │ └── verification_key.html │ │ ├── base.html │ │ ├── disabled.html │ │ ├── login.html │ │ ├── logout.html │ │ ├── recover.html │ │ ├── register.html │ │ ├── register │ │ │ ├── frictionless.html │ │ │ ├── organization.html │ │ │ └── personal.html │ │ └── reset.html │ ├── activities │ │ ├── accounts │ │ │ ├── account.html │ │ │ ├── base.html │ │ │ └── index.html │ │ └── contacts │ │ │ ├── base.html │ │ │ ├── contact.html │ │ │ └── index.html │ ├── api_docs │ │ ├── index.html │ │ └── notifications.html │ ├── app.html │ ├── app_proxy_help.html │ ├── base.html │ ├── captcha │ │ ├── widget.html │ │ └── widget_ajax.html │ ├── contact.html │ ├── django │ │ ├── _field.html │ │ ├── _form.html │ │ ├── accounts │ │ │ ├── _recover_form.html │ │ │ ├── _register_form.html │ │ │ └── register │ │ │ │ ├── _frictionless_register_form.html │ │ │ │ ├── _organization_register_form.html │ │ │ │ └── _personal_register_form.html │ │ └── saas │ │ │ ├── _card_use.html │ │ │ └── profile │ │ │ └── _form.html │ ├── extended_templates │ │ ├── _body_bottom.html │ │ ├── _body_bottom_edit_tools.html │ │ ├── _edit_tools.html │ │ └── theme.html │ ├── index.html │ ├── jinja2 │ │ ├── _contact_form.html │ │ ├── _entry_created_at_field.html │ │ ├── _entry_ends_at_field.html │ │ ├── _form-2col.html │ │ ├── _form.html │ │ ├── _form_fields.html │ │ ├── _params_ends_at_field.html │ │ ├── _params_start_at_field.html │ │ ├── accounts │ │ │ ├── _register_form_fields.html │ │ │ ├── activate │ │ │ │ └── _index_form.html │ │ │ └── register │ │ │ │ ├── _frictionless_register_form.html │ │ │ │ ├── _organization_register_form.html │ │ │ │ └── _personal_register_form.html │ │ ├── captcha │ │ │ └── widget_nocaptcha.html │ │ ├── debug_toolbar │ │ │ ├── base.html │ │ │ ├── panels │ │ │ │ ├── cache.html │ │ │ │ ├── headers.html │ │ │ │ ├── logging.html │ │ │ │ ├── profiling.html │ │ │ │ ├── request.html │ │ │ │ ├── settings.html │ │ │ │ ├── signals.html │ │ │ │ ├── sql.html │ │ │ │ ├── sql_explain.html │ │ │ │ ├── sql_profile.html │ │ │ │ ├── sql_select.html │ │ │ │ ├── staticfiles.html │ │ │ │ ├── template_source.html │ │ │ │ ├── templates.html │ │ │ │ ├── timer.html │ │ │ │ └── versions.html │ │ │ └── redirect.html │ │ └── saas │ │ │ ├── _card_use.html │ │ │ └── profile │ │ │ ├── _form.html │ │ │ └── plans │ │ │ └── _form.html │ ├── notification │ │ ├── base.eml │ │ ├── card_expires_soon.eml │ │ ├── card_updated.eml │ │ ├── charge_updated.eml │ │ ├── claim_code_generated.eml │ │ ├── detail.html │ │ ├── expires_soon.eml │ │ ├── order_executed.eml │ │ ├── period_sales_report_created.eml │ │ ├── processor_setup_error.eml │ │ ├── profile_updated.eml │ │ ├── quota_reached.eml │ │ ├── renewal_charge_failed.eml │ │ ├── role_grant_accepted.eml │ │ ├── role_grant_created.eml │ │ ├── role_request_created.eml │ │ ├── subscription_grant_accepted.eml │ │ ├── subscription_grant_created.eml │ │ ├── subscription_request_accepted.eml │ │ ├── subscription_request_created.eml │ │ ├── syntax_error.eml │ │ ├── use_charge_limit_crossed.eml │ │ ├── user_activated.eml │ │ ├── user_contact.eml │ │ ├── user_logged_in.eml │ │ ├── user_login_failed.eml │ │ ├── user_mfa_code.eml │ │ ├── user_registered.eml │ │ ├── user_reset_password.eml │ │ ├── user_verification.eml │ │ └── user_welcome.eml │ ├── rules │ │ ├── app_dashboard.html │ │ ├── engagement.html │ │ ├── forward_error.html │ │ └── forward_error_manager_help.html │ ├── saas │ │ ├── _body_top_template.html │ │ ├── _create_profile_card.html │ │ ├── _filter.html │ │ ├── _filter_match.html │ │ ├── _invoiceables.html │ │ ├── _organization_card.html │ │ ├── _plan_short.html │ │ ├── _profile_new.html │ │ ├── _redirect_accessible_card.html │ │ ├── _request_profile_card.html │ │ ├── _sidebar.html │ │ ├── _transactions.html │ │ ├── _user_card.html │ │ ├── agreements │ │ │ ├── privacy.md │ │ │ ├── security.md │ │ │ └── terms-of-use.md │ │ ├── base.html │ │ ├── base_dashboard.html │ │ ├── billing │ │ │ ├── balance.html │ │ │ ├── bank.html │ │ │ ├── card.html │ │ │ ├── cart-periods.html │ │ │ ├── cart-seats.html │ │ │ ├── cart.html │ │ │ ├── cartitems │ │ │ │ ├── index.html │ │ │ │ └── user.html │ │ │ ├── charges.html │ │ │ ├── checkout.html │ │ │ ├── coupons.html │ │ │ ├── import.html │ │ │ ├── index.html │ │ │ ├── receipt.html │ │ │ ├── transactions.html │ │ │ ├── transfers.html │ │ │ └── withdraw.html │ │ ├── legal │ │ │ ├── agreement.html │ │ │ ├── base.html │ │ │ ├── index.html │ │ │ └── sign.html │ │ ├── metrics │ │ │ ├── _table.html │ │ │ ├── activity.html │ │ │ ├── balances.html │ │ │ ├── balances_due.html │ │ │ ├── base.html │ │ │ ├── coupons.html │ │ │ ├── dashboard.html │ │ │ ├── lifetimevalue.html │ │ │ ├── plans.html │ │ │ └── revenue.html │ │ ├── pricing.html │ │ ├── printable_charge_receipt.html │ │ ├── profile │ │ │ ├── compliance │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── new.html │ │ │ ├── plans │ │ │ │ ├── index.html │ │ │ │ ├── plan.html │ │ │ │ └── subscribers.html │ │ │ ├── roles │ │ │ │ ├── index.html │ │ │ │ └── role.html │ │ │ ├── subscribers.html │ │ │ └── subscriptions.html │ │ ├── profile_redirects.html │ │ ├── redeem.html │ │ └── users │ │ │ ├── roles.html │ │ │ └── roles │ │ │ └── accept.html │ ├── static │ │ └── directory_index.html │ └── users │ │ ├── _require_password.html │ │ ├── base.html │ │ ├── notifications.html │ │ ├── password.html │ │ └── pubkey.html ├── templatetags │ ├── __init__.py │ └── djaoapp_tags.py ├── thread_locals.py ├── urlbuilders.py ├── urls │ ├── __init__.py │ ├── api.py │ ├── proxy.py │ └── views.py ├── utils.py ├── validators.py ├── views │ ├── __init__.py │ ├── contact.py │ ├── custom_saas.py │ ├── custom_signup.py │ ├── custom_themes.py │ ├── errors.py │ ├── notifications.py │ ├── product.py │ ├── static.py │ └── users.py └── wsgi.py ├── docs ├── conf.py ├── development.rst ├── files.rst ├── index.rst ├── oauth.rst ├── quirks.rst └── runtime-config.rst ├── etc ├── credentials ├── gunicorn.conf ├── logrotate.conf ├── monit.conf ├── service.conf ├── site.conf ├── sysconfig.conf └── tmpfiles.conf ├── livedemo └── templates │ ├── _generic_navbar.html │ └── index.html ├── manage.py ├── package.json ├── requirements-native.txt ├── requirements.txt ├── schema.yml └── webpack.config.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/README.md -------------------------------------------------------------------------------- /djaoapp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp.xml -------------------------------------------------------------------------------- /djaoapp/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2025, DjaoDjin inc. 2 | # see LICENSE 3 | -------------------------------------------------------------------------------- /djaoapp/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djaoapp/api/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/api/auth.py -------------------------------------------------------------------------------- /djaoapp/api/contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/api/contact.py -------------------------------------------------------------------------------- /djaoapp/api/custom_themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/api/custom_themes.py -------------------------------------------------------------------------------- /djaoapp/api/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/api/notifications.py -------------------------------------------------------------------------------- /djaoapp/api/organizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/api/organizations.py -------------------------------------------------------------------------------- /djaoapp/api/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/api/roles.py -------------------------------------------------------------------------------- /djaoapp/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/api/serializers.py -------------------------------------------------------------------------------- /djaoapp/api/todos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/api/todos.py -------------------------------------------------------------------------------- /djaoapp/api/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/api/users.py -------------------------------------------------------------------------------- /djaoapp/api_docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djaoapp/api_docs/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/api_docs/schemas.py -------------------------------------------------------------------------------- /djaoapp/api_docs/template.txt: -------------------------------------------------------------------------------- 1 | %(body)s 2 | -------------------------------------------------------------------------------- /djaoapp/api_docs/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/api_docs/views.py -------------------------------------------------------------------------------- /djaoapp/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/compat.py -------------------------------------------------------------------------------- /djaoapp/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/context_processors.py -------------------------------------------------------------------------------- /djaoapp/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/decorators.py -------------------------------------------------------------------------------- /djaoapp/edition_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/edition_tools.py -------------------------------------------------------------------------------- /djaoapp/extras/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djaoapp/extras/extended_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/extras/extended_templates.py -------------------------------------------------------------------------------- /djaoapp/extras/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/extras/rules.py -------------------------------------------------------------------------------- /djaoapp/extras/saas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/extras/saas.py -------------------------------------------------------------------------------- /djaoapp/extras/signup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/extras/signup.py -------------------------------------------------------------------------------- /djaoapp/fixtures/100-balance-due.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/100-balance-due.json -------------------------------------------------------------------------------- /djaoapp/fixtures/110-balance-checkout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/110-balance-checkout.json -------------------------------------------------------------------------------- /djaoapp/fixtures/120-subscriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/120-subscriptions.json -------------------------------------------------------------------------------- /djaoapp/fixtures/130-subscriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/130-subscriptions.json -------------------------------------------------------------------------------- /djaoapp/fixtures/150-subscriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/150-subscriptions.json -------------------------------------------------------------------------------- /djaoapp/fixtures/160-renewals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/160-renewals.json -------------------------------------------------------------------------------- /djaoapp/fixtures/160-subscriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/160-subscriptions.json -------------------------------------------------------------------------------- /djaoapp/fixtures/170-billing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/170-billing.json -------------------------------------------------------------------------------- /djaoapp/fixtures/180-auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/180-auth.json -------------------------------------------------------------------------------- /djaoapp/fixtures/20-broker-subscriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/20-broker-subscriptions.json -------------------------------------------------------------------------------- /djaoapp/fixtures/200-saas-roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/200-saas-roles.json -------------------------------------------------------------------------------- /djaoapp/fixtures/40-provider-subscriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/40-provider-subscriptions.json -------------------------------------------------------------------------------- /djaoapp/fixtures/50-saas-profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/50-saas-profiles.json -------------------------------------------------------------------------------- /djaoapp/fixtures/55-saas-roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/55-saas-roles.json -------------------------------------------------------------------------------- /djaoapp/fixtures/60-djaoapp-register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/60-djaoapp-register.json -------------------------------------------------------------------------------- /djaoapp/fixtures/70-visit-card2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/70-visit-card2.json -------------------------------------------------------------------------------- /djaoapp/fixtures/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/DESCRIPTION -------------------------------------------------------------------------------- /djaoapp/fixtures/authdisabled-db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/authdisabled-db.json -------------------------------------------------------------------------------- /djaoapp/fixtures/cowork-db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/cowork-db.json -------------------------------------------------------------------------------- /djaoapp/fixtures/default-db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/default-db.json -------------------------------------------------------------------------------- /djaoapp/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/initial_data.json -------------------------------------------------------------------------------- /djaoapp/fixtures/livedemo-db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/livedemo-db.json -------------------------------------------------------------------------------- /djaoapp/fixtures/noregistration-db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/fixtures/noregistration-db.json -------------------------------------------------------------------------------- /djaoapp/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djaoapp/forms/custom_signup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/forms/custom_signup.py -------------------------------------------------------------------------------- /djaoapp/forms/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/forms/profile.py -------------------------------------------------------------------------------- /djaoapp/jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/jinja2.py -------------------------------------------------------------------------------- /djaoapp/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djaoapp/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djaoapp/locale/pt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/locale/pt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djaoapp/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djaoapp/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djaoapp/management/commands/decode_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/management/commands/decode_session.py -------------------------------------------------------------------------------- /djaoapp/management/commands/generate_api_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/management/commands/generate_api_examples.py -------------------------------------------------------------------------------- /djaoapp/management/commands/generate_assets_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/management/commands/generate_assets_paths.py -------------------------------------------------------------------------------- /djaoapp/management/commands/load_test_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/management/commands/load_test_transactions.py -------------------------------------------------------------------------------- /djaoapp/management/commands/makemessages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/management/commands/makemessages.py -------------------------------------------------------------------------------- /djaoapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /djaoapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djaoapp/migrations/adjustments1-sqlite3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/migrations/adjustments1-sqlite3.sql -------------------------------------------------------------------------------- /djaoapp/migrations/adjustments2-sqlite3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/migrations/adjustments2-sqlite3.sql -------------------------------------------------------------------------------- /djaoapp/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/mixins.py -------------------------------------------------------------------------------- /djaoapp/notifications/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2025, DjaoDjin inc. 2 | # see LICENSE 3 | from .base import send_notification 4 | -------------------------------------------------------------------------------- /djaoapp/notifications/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/notifications/backends/__init__.py -------------------------------------------------------------------------------- /djaoapp/notifications/backends/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/notifications/backends/email.py -------------------------------------------------------------------------------- /djaoapp/notifications/backends/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/notifications/backends/webhook.py -------------------------------------------------------------------------------- /djaoapp/notifications/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/notifications/base.py -------------------------------------------------------------------------------- /djaoapp/notifications/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/notifications/serializers.py -------------------------------------------------------------------------------- /djaoapp/notifications/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/notifications/signals.py -------------------------------------------------------------------------------- /djaoapp/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/pagination.py -------------------------------------------------------------------------------- /djaoapp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/settings.py -------------------------------------------------------------------------------- /djaoapp/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/signals.py -------------------------------------------------------------------------------- /djaoapp/static/img/american-express-curved-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/american-express-curved-32px.png -------------------------------------------------------------------------------- /djaoapp/static/img/construction-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/construction-banner.svg -------------------------------------------------------------------------------- /djaoapp/static/img/dash-icons/billing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/dash-icons/billing.svg -------------------------------------------------------------------------------- /djaoapp/static/img/dash-icons/connected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/dash-icons/connected.svg -------------------------------------------------------------------------------- /djaoapp/static/img/dash-icons/coupons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/dash-icons/coupons.svg -------------------------------------------------------------------------------- /djaoapp/static/img/dash-icons/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/dash-icons/dashboard.svg -------------------------------------------------------------------------------- /djaoapp/static/img/dash-icons/funds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/dash-icons/funds.svg -------------------------------------------------------------------------------- /djaoapp/static/img/dash-icons/notifications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/dash-icons/notifications.svg -------------------------------------------------------------------------------- /djaoapp/static/img/dash-icons/plans.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/dash-icons/plans.svg -------------------------------------------------------------------------------- /djaoapp/static/img/dash-icons/revenue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/dash-icons/revenue.svg -------------------------------------------------------------------------------- /djaoapp/static/img/dash-icons/rules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/dash-icons/rules.svg -------------------------------------------------------------------------------- /djaoapp/static/img/dash-icons/subscribers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/dash-icons/subscribers.svg -------------------------------------------------------------------------------- /djaoapp/static/img/dash-icons/subscriptions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/dash-icons/subscriptions.svg -------------------------------------------------------------------------------- /djaoapp/static/img/dash-icons/themes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/dash-icons/themes.svg -------------------------------------------------------------------------------- /djaoapp/static/img/dash-icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/dash-icons/user.svg -------------------------------------------------------------------------------- /djaoapp/static/img/default-organization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/default-organization.png -------------------------------------------------------------------------------- /djaoapp/static/img/default-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/default-user.png -------------------------------------------------------------------------------- /djaoapp/static/img/discover-curved-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/discover-curved-32px.png -------------------------------------------------------------------------------- /djaoapp/static/img/fa-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/fa-code.png -------------------------------------------------------------------------------- /djaoapp/static/img/fa-picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/fa-picture.png -------------------------------------------------------------------------------- /djaoapp/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/favicon.ico -------------------------------------------------------------------------------- /djaoapp/static/img/logo-djaodjin-darkmode-320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/logo-djaodjin-darkmode-320.png -------------------------------------------------------------------------------- /djaoapp/static/img/mastercard-curved-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/mastercard-curved-32px.png -------------------------------------------------------------------------------- /djaoapp/static/img/sf-golden-gate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/sf-golden-gate.png -------------------------------------------------------------------------------- /djaoapp/static/img/visa-curved-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/img/visa-curved-32px.png -------------------------------------------------------------------------------- /djaoapp/static/js/djaoapp-i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/js/djaoapp-i18n.js -------------------------------------------------------------------------------- /djaoapp/static/js/djaoapp-theme-color-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/js/djaoapp-theme-color-mode.js -------------------------------------------------------------------------------- /djaoapp/static/js/djaodjin-dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/js/djaodjin-dashboard.js -------------------------------------------------------------------------------- /djaoapp/static/js/djaodjin-djaoapp-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/js/djaodjin-djaoapp-vue.js -------------------------------------------------------------------------------- /djaoapp/static/js/djaodjin-menubar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/js/djaodjin-menubar.js -------------------------------------------------------------------------------- /djaoapp/static/js/djaodjin-metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/js/djaodjin-metrics.js -------------------------------------------------------------------------------- /djaoapp/static/js/djaodjin-plan-edition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/js/djaodjin-plan-edition.js -------------------------------------------------------------------------------- /djaoapp/static/scss/base/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/base/base.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/base/djaodjin-dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/base/djaodjin-dashboard.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/base/djaodjin-menubar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/base/djaodjin-menubar.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/base/mallspace.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/base/mallspace.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/dashboard/dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/dashboard/dashboard.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/email/email-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/email/email-theme.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/email/email.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/email/email.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/pages/pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/pages/pages.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap-colorpicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap-colorpicker.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_accordion.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_alert.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_badge.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_breadcrumb.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_button-group.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_card.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_carousel.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_close.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_containers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_containers.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_dropdown.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_forms.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_functions.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_grid.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_helpers.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_images.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_list-group.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_maps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_maps.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_modal.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_nav.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_offcanvas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_offcanvas.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_pagination.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_placeholders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_placeholders.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_popover.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_progress.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_reboot.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_root.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_spinners.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_tables.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_toasts.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_transitions.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_type.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_utilities.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_variables-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_variables-dark.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/_variables.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/bootstrap-grid.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/bootstrap-reboot.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/bootstrap-utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/bootstrap-utilities.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/bootstrap.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/forms/_floating-labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/forms/_floating-labels.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/forms/_form-check.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/forms/_form-check.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/forms/_form-control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/forms/_form-control.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/forms/_form-range.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/forms/_form-range.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/forms/_form-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/forms/_form-select.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/forms/_form-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/forms/_form-text.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/forms/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/forms/_input-group.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/forms/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/forms/_labels.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/forms/_validation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/forms/_validation.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/helpers/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/helpers/_clearfix.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/helpers/_color-bg.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/helpers/_color-bg.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/helpers/_colored-links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/helpers/_colored-links.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/helpers/_focus-ring.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/helpers/_focus-ring.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/helpers/_icon-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/helpers/_icon-link.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/helpers/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/helpers/_position.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/helpers/_ratio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/helpers/_ratio.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/helpers/_stacks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/helpers/_stacks.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/helpers/_stretched-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/helpers/_stretched-link.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/helpers/_text-truncation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/helpers/_text-truncation.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/helpers/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/helpers/_visually-hidden.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/helpers/_vr.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/helpers/_vr.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_alert.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_backdrop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_backdrop.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_banner.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_border-radius.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_buttons.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_caret.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_clearfix.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_color-mode.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_color-mode.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_color-scheme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_color-scheme.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_container.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_deprecate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_deprecate.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_forms.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_gradients.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_grid.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_image.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_list-group.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_lists.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_pagination.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_reset-text.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_resize.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_table-variants.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_table-variants.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_transition.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_utilities.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/mixins/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/mixins/_visually-hidden.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/tests/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/tests/jasmine.js -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/tests/mixins/_color-modes.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/tests/mixins/_color-modes.test.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/tests/mixins/_media-query-color-mode-full.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/tests/mixins/_media-query-color-mode-full.test.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/tests/mixins/_utilities.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/tests/mixins/_utilities.test.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/tests/sass-true/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/tests/sass-true/register.js -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/tests/sass-true/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/tests/sass-true/runner.js -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/tests/utilities/_api.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/tests/utilities/_api.test.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/utilities/_api.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/utilities/_api.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/bootstrap/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/bootstrap/vendor/_rfs.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/djaodjin-extended-templates/djaodjin-editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/djaodjin-extended-templates/djaodjin-editor.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/djaodjin-extended-templates/djaodjin-sidebar-gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/djaodjin-extended-templates/djaodjin-sidebar-gallery.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/djaodjin-extended-templates/djaodjin-style-editor.scss: -------------------------------------------------------------------------------- 1 | 2 | #style-editor { 3 | padding-left: 20px; 4 | } -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/font-awesome.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/jquery-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/jquery-ui.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/nv.d3.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/nv.d3.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/tagify.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/tagify.scss -------------------------------------------------------------------------------- /djaoapp/static/scss/vendor/trip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/scss/vendor/trip.scss -------------------------------------------------------------------------------- /djaoapp/static/vendor/djaodjin-annotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/vendor/djaodjin-annotate.js -------------------------------------------------------------------------------- /djaoapp/static/vendor/hallo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/vendor/hallo.js -------------------------------------------------------------------------------- /djaoapp/static/vendor/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/vendor/jquery-ui.js -------------------------------------------------------------------------------- /djaoapp/static/vendor/jquery.ba-throttle-debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/vendor/jquery.ba-throttle-debounce.js -------------------------------------------------------------------------------- /djaoapp/static/vendor/jquery.textarea_autosize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/vendor/jquery.textarea_autosize.js -------------------------------------------------------------------------------- /djaoapp/static/vendor/nv.d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/vendor/nv.d3.js -------------------------------------------------------------------------------- /djaoapp/static/vendor/rangy-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/static/vendor/rangy-core.js -------------------------------------------------------------------------------- /djaoapp/templates/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/400.html -------------------------------------------------------------------------------- /djaoapp/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/403.html -------------------------------------------------------------------------------- /djaoapp/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/404.html -------------------------------------------------------------------------------- /djaoapp/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/500.html -------------------------------------------------------------------------------- /djaoapp/templates/_generic_navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/_generic_navbar.html -------------------------------------------------------------------------------- /djaoapp/templates/_menubar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/_menubar.html -------------------------------------------------------------------------------- /djaoapp/templates/_pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/_pagination.html -------------------------------------------------------------------------------- /djaoapp/templates/_password_strength_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/_password_strength_scripts.html -------------------------------------------------------------------------------- /djaoapp/templates/accounts/activate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/accounts/activate/index.html -------------------------------------------------------------------------------- /djaoapp/templates/accounts/activate/verification_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/accounts/activate/verification_key.html -------------------------------------------------------------------------------- /djaoapp/templates/accounts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/accounts/base.html -------------------------------------------------------------------------------- /djaoapp/templates/accounts/disabled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/accounts/disabled.html -------------------------------------------------------------------------------- /djaoapp/templates/accounts/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/accounts/login.html -------------------------------------------------------------------------------- /djaoapp/templates/accounts/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/accounts/logout.html -------------------------------------------------------------------------------- /djaoapp/templates/accounts/recover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/accounts/recover.html -------------------------------------------------------------------------------- /djaoapp/templates/accounts/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/accounts/register.html -------------------------------------------------------------------------------- /djaoapp/templates/accounts/register/frictionless.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/accounts/register/frictionless.html -------------------------------------------------------------------------------- /djaoapp/templates/accounts/register/organization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/accounts/register/organization.html -------------------------------------------------------------------------------- /djaoapp/templates/accounts/register/personal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/accounts/register/personal.html -------------------------------------------------------------------------------- /djaoapp/templates/accounts/reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/accounts/reset.html -------------------------------------------------------------------------------- /djaoapp/templates/activities/accounts/account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/activities/accounts/account.html -------------------------------------------------------------------------------- /djaoapp/templates/activities/accounts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/activities/accounts/base.html -------------------------------------------------------------------------------- /djaoapp/templates/activities/accounts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/activities/accounts/index.html -------------------------------------------------------------------------------- /djaoapp/templates/activities/contacts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/activities/contacts/base.html -------------------------------------------------------------------------------- /djaoapp/templates/activities/contacts/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/activities/contacts/contact.html -------------------------------------------------------------------------------- /djaoapp/templates/activities/contacts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/activities/contacts/index.html -------------------------------------------------------------------------------- /djaoapp/templates/api_docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/api_docs/index.html -------------------------------------------------------------------------------- /djaoapp/templates/api_docs/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/api_docs/notifications.html -------------------------------------------------------------------------------- /djaoapp/templates/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/app.html -------------------------------------------------------------------------------- /djaoapp/templates/app_proxy_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/app_proxy_help.html -------------------------------------------------------------------------------- /djaoapp/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/base.html -------------------------------------------------------------------------------- /djaoapp/templates/captcha/widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/captcha/widget.html -------------------------------------------------------------------------------- /djaoapp/templates/captcha/widget_ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/captcha/widget_ajax.html -------------------------------------------------------------------------------- /djaoapp/templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/contact.html -------------------------------------------------------------------------------- /djaoapp/templates/django/_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/django/_field.html -------------------------------------------------------------------------------- /djaoapp/templates/django/_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/django/_form.html -------------------------------------------------------------------------------- /djaoapp/templates/django/accounts/_recover_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/django/accounts/_recover_form.html -------------------------------------------------------------------------------- /djaoapp/templates/django/accounts/_register_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/django/accounts/_register_form.html -------------------------------------------------------------------------------- /djaoapp/templates/django/accounts/register/_frictionless_register_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/django/accounts/register/_frictionless_register_form.html -------------------------------------------------------------------------------- /djaoapp/templates/django/accounts/register/_organization_register_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/django/accounts/register/_organization_register_form.html -------------------------------------------------------------------------------- /djaoapp/templates/django/accounts/register/_personal_register_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/django/accounts/register/_personal_register_form.html -------------------------------------------------------------------------------- /djaoapp/templates/django/saas/_card_use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/django/saas/_card_use.html -------------------------------------------------------------------------------- /djaoapp/templates/django/saas/profile/_form.html: -------------------------------------------------------------------------------- 1 | {% extends "_form.html" %} 2 | -------------------------------------------------------------------------------- /djaoapp/templates/extended_templates/_body_bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/extended_templates/_body_bottom.html -------------------------------------------------------------------------------- /djaoapp/templates/extended_templates/_body_bottom_edit_tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/extended_templates/_body_bottom_edit_tools.html -------------------------------------------------------------------------------- /djaoapp/templates/extended_templates/_edit_tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/extended_templates/_edit_tools.html -------------------------------------------------------------------------------- /djaoapp/templates/extended_templates/theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/extended_templates/theme.html -------------------------------------------------------------------------------- /djaoapp/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/index.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/_contact_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/_contact_form.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/_entry_created_at_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/_entry_created_at_field.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/_entry_ends_at_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/_entry_ends_at_field.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/_form-2col.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/_form-2col.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/_form.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/_form_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/_form_fields.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/_params_ends_at_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/_params_ends_at_field.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/_params_start_at_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/_params_start_at_field.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/accounts/_register_form_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/accounts/_register_form_fields.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/accounts/activate/_index_form.html: -------------------------------------------------------------------------------- 1 | {% extends "_form_fields.html" %} 2 | -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/accounts/register/_frictionless_register_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/accounts/register/_frictionless_register_form.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/accounts/register/_organization_register_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/accounts/register/_organization_register_form.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/accounts/register/_personal_register_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/accounts/register/_personal_register_form.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/captcha/widget_nocaptcha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/captcha/widget_nocaptcha.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/debug_toolbar/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/debug_toolbar/base.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/debug_toolbar/panels/cache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/debug_toolbar/panels/cache.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/debug_toolbar/panels/headers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/debug_toolbar/panels/headers.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/debug_toolbar/panels/logging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/debug_toolbar/panels/logging.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/debug_toolbar/panels/profiling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/debug_toolbar/panels/profiling.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/debug_toolbar/panels/request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/debug_toolbar/panels/request.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/debug_toolbar/panels/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/debug_toolbar/panels/settings.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/debug_toolbar/panels/signals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/debug_toolbar/panels/signals.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/debug_toolbar/panels/sql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/debug_toolbar/panels/sql.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/debug_toolbar/panels/sql_explain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/debug_toolbar/panels/sql_explain.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/debug_toolbar/panels/sql_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/debug_toolbar/panels/sql_profile.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/debug_toolbar/panels/sql_select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/debug_toolbar/panels/sql_select.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/debug_toolbar/panels/staticfiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/debug_toolbar/panels/staticfiles.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/debug_toolbar/panels/template_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/debug_toolbar/panels/template_source.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/debug_toolbar/panels/templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/debug_toolbar/panels/templates.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/debug_toolbar/panels/timer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/debug_toolbar/panels/timer.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/debug_toolbar/panels/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/debug_toolbar/panels/versions.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/debug_toolbar/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/debug_toolbar/redirect.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/saas/_card_use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/saas/_card_use.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/saas/profile/_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/saas/profile/_form.html -------------------------------------------------------------------------------- /djaoapp/templates/jinja2/saas/profile/plans/_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/jinja2/saas/profile/plans/_form.html -------------------------------------------------------------------------------- /djaoapp/templates/notification/base.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/base.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/card_expires_soon.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/card_expires_soon.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/card_updated.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/card_updated.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/charge_updated.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/charge_updated.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/claim_code_generated.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/claim_code_generated.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/detail.html -------------------------------------------------------------------------------- /djaoapp/templates/notification/expires_soon.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/expires_soon.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/order_executed.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/order_executed.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/period_sales_report_created.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/period_sales_report_created.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/processor_setup_error.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/processor_setup_error.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/profile_updated.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/profile_updated.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/quota_reached.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/quota_reached.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/renewal_charge_failed.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/renewal_charge_failed.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/role_grant_accepted.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/role_grant_accepted.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/role_grant_created.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/role_grant_created.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/role_request_created.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/role_request_created.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/subscription_grant_accepted.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/subscription_grant_accepted.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/subscription_grant_created.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/subscription_grant_created.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/subscription_request_accepted.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/subscription_request_accepted.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/subscription_request_created.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/subscription_request_created.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/syntax_error.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/syntax_error.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/use_charge_limit_crossed.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/use_charge_limit_crossed.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/user_activated.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/user_activated.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/user_contact.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/user_contact.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/user_logged_in.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/user_logged_in.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/user_login_failed.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/user_login_failed.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/user_mfa_code.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/user_mfa_code.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/user_registered.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/user_registered.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/user_reset_password.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/user_reset_password.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/user_verification.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/user_verification.eml -------------------------------------------------------------------------------- /djaoapp/templates/notification/user_welcome.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/notification/user_welcome.eml -------------------------------------------------------------------------------- /djaoapp/templates/rules/app_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/rules/app_dashboard.html -------------------------------------------------------------------------------- /djaoapp/templates/rules/engagement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/rules/engagement.html -------------------------------------------------------------------------------- /djaoapp/templates/rules/forward_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/rules/forward_error.html -------------------------------------------------------------------------------- /djaoapp/templates/rules/forward_error_manager_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/rules/forward_error_manager_help.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/_body_top_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/_body_top_template.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/_create_profile_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/_create_profile_card.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/_filter.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/_filter_match.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/_filter_match.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/_invoiceables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/_invoiceables.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/_organization_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/_organization_card.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/_plan_short.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/_plan_short.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/_profile_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/_profile_new.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/_redirect_accessible_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/_redirect_accessible_card.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/_request_profile_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/_request_profile_card.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/_sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/_sidebar.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/_transactions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/_transactions.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/_user_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/_user_card.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/agreements/privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/agreements/privacy.md -------------------------------------------------------------------------------- /djaoapp/templates/saas/agreements/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/agreements/security.md -------------------------------------------------------------------------------- /djaoapp/templates/saas/agreements/terms-of-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/agreements/terms-of-use.md -------------------------------------------------------------------------------- /djaoapp/templates/saas/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/base.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/base_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/base_dashboard.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/billing/balance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/billing/balance.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/billing/bank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/billing/bank.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/billing/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/billing/card.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/billing/cart-periods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/billing/cart-periods.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/billing/cart-seats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/billing/cart-seats.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/billing/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/billing/cart.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/billing/cartitems/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/billing/cartitems/index.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/billing/cartitems/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/billing/cartitems/user.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/billing/charges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/billing/charges.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/billing/checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/billing/checkout.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/billing/coupons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/billing/coupons.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/billing/import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/billing/import.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/billing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/billing/index.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/billing/receipt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/billing/receipt.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/billing/transactions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/billing/transactions.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/billing/transfers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/billing/transfers.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/billing/withdraw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/billing/withdraw.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/legal/agreement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/legal/agreement.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/legal/base.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | -------------------------------------------------------------------------------- /djaoapp/templates/saas/legal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/legal/index.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/legal/sign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/legal/sign.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/metrics/_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/metrics/_table.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/metrics/activity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/metrics/activity.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/metrics/balances.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/metrics/balances.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/metrics/balances_due.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/metrics/balances_due.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/metrics/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/metrics/base.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/metrics/coupons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/metrics/coupons.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/metrics/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/metrics/dashboard.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/metrics/lifetimevalue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/metrics/lifetimevalue.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/metrics/plans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/metrics/plans.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/metrics/revenue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/metrics/revenue.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/pricing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/pricing.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/printable_charge_receipt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/printable_charge_receipt.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/profile/compliance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/profile/compliance/index.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/profile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/profile/index.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/profile/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/profile/new.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/profile/plans/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/profile/plans/index.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/profile/plans/plan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/profile/plans/plan.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/profile/plans/subscribers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/profile/plans/subscribers.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/profile/roles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/profile/roles/index.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/profile/roles/role.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/profile/roles/role.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/profile/subscribers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/profile/subscribers.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/profile/subscriptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/profile/subscriptions.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/profile_redirects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/profile_redirects.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/redeem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/redeem.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/users/roles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/users/roles.html -------------------------------------------------------------------------------- /djaoapp/templates/saas/users/roles/accept.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/saas/users/roles/accept.html -------------------------------------------------------------------------------- /djaoapp/templates/static/directory_index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /djaoapp/templates/users/_require_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/users/_require_password.html -------------------------------------------------------------------------------- /djaoapp/templates/users/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/users/base.html -------------------------------------------------------------------------------- /djaoapp/templates/users/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/users/notifications.html -------------------------------------------------------------------------------- /djaoapp/templates/users/password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/users/password.html -------------------------------------------------------------------------------- /djaoapp/templates/users/pubkey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templates/users/pubkey.html -------------------------------------------------------------------------------- /djaoapp/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djaoapp/templatetags/djaoapp_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/templatetags/djaoapp_tags.py -------------------------------------------------------------------------------- /djaoapp/thread_locals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/thread_locals.py -------------------------------------------------------------------------------- /djaoapp/urlbuilders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/urlbuilders.py -------------------------------------------------------------------------------- /djaoapp/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/urls/__init__.py -------------------------------------------------------------------------------- /djaoapp/urls/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/urls/api.py -------------------------------------------------------------------------------- /djaoapp/urls/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/urls/proxy.py -------------------------------------------------------------------------------- /djaoapp/urls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/urls/views.py -------------------------------------------------------------------------------- /djaoapp/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/utils.py -------------------------------------------------------------------------------- /djaoapp/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/validators.py -------------------------------------------------------------------------------- /djaoapp/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djaoapp/views/contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/views/contact.py -------------------------------------------------------------------------------- /djaoapp/views/custom_saas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/views/custom_saas.py -------------------------------------------------------------------------------- /djaoapp/views/custom_signup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/views/custom_signup.py -------------------------------------------------------------------------------- /djaoapp/views/custom_themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/views/custom_themes.py -------------------------------------------------------------------------------- /djaoapp/views/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/views/errors.py -------------------------------------------------------------------------------- /djaoapp/views/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/views/notifications.py -------------------------------------------------------------------------------- /djaoapp/views/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/views/product.py -------------------------------------------------------------------------------- /djaoapp/views/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/views/static.py -------------------------------------------------------------------------------- /djaoapp/views/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/views/users.py -------------------------------------------------------------------------------- /djaoapp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/djaoapp/wsgi.py -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/docs/development.rst -------------------------------------------------------------------------------- /docs/files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/docs/files.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/oauth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/docs/oauth.rst -------------------------------------------------------------------------------- /docs/quirks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/docs/quirks.rst -------------------------------------------------------------------------------- /docs/runtime-config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/docs/runtime-config.rst -------------------------------------------------------------------------------- /etc/credentials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/etc/credentials -------------------------------------------------------------------------------- /etc/gunicorn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/etc/gunicorn.conf -------------------------------------------------------------------------------- /etc/logrotate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/etc/logrotate.conf -------------------------------------------------------------------------------- /etc/monit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/etc/monit.conf -------------------------------------------------------------------------------- /etc/service.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/etc/service.conf -------------------------------------------------------------------------------- /etc/site.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/etc/site.conf -------------------------------------------------------------------------------- /etc/sysconfig.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/etc/sysconfig.conf -------------------------------------------------------------------------------- /etc/tmpfiles.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/etc/tmpfiles.conf -------------------------------------------------------------------------------- /livedemo/templates/_generic_navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/livedemo/templates/_generic_navbar.html -------------------------------------------------------------------------------- /livedemo/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/livedemo/templates/index.html -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/manage.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/package.json -------------------------------------------------------------------------------- /requirements-native.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/requirements-native.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/requirements.txt -------------------------------------------------------------------------------- /schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/schema.yml -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djaodjin/djaoapp/HEAD/webpack.config.js --------------------------------------------------------------------------------