├── .gitignore ├── README.md ├── app ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-311.pyc │ ├── __init__.cpython-38.pyc │ ├── __init__.cpython-39.pyc │ ├── celery.cpython-311.pyc │ ├── settings.cpython-310.pyc │ ├── settings.cpython-311.pyc │ ├── settings.cpython-38.pyc │ ├── settings.cpython-39.pyc │ ├── urls.cpython-310.pyc │ ├── urls.cpython-311.pyc │ ├── urls.cpython-38.pyc │ ├── urls.cpython-39.pyc │ ├── wsgi.cpython-310.pyc │ ├── wsgi.cpython-311.pyc │ ├── wsgi.cpython-38.pyc │ └── wsgi.cpython-39.pyc ├── asgi.py ├── custom_admin │ └── templates │ │ ├── __init__.py │ │ └── admin │ │ ├── index.html │ │ └── stats2.html ├── settings.py ├── urls.py └── wsgi.py ├── aviato ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-311.pyc │ ├── __init__.cpython-38.pyc │ ├── __init__.cpython-39.pyc │ ├── admin.cpython-310.pyc │ ├── admin.cpython-311.pyc │ ├── admin.cpython-38.pyc │ ├── admin.cpython-39.pyc │ ├── apps.cpython-310.pyc │ ├── apps.cpython-311.pyc │ ├── apps.cpython-38.pyc │ ├── apps.cpython-39.pyc │ ├── forms.cpython-310.pyc │ ├── forms.cpython-311.pyc │ ├── forms.cpython-38.pyc │ ├── forms.cpython-39.pyc │ ├── models.cpython-310.pyc │ ├── models.cpython-311.pyc │ ├── models.cpython-38.pyc │ ├── models.cpython-39.pyc │ ├── tasks.cpython-311.pyc │ ├── urls.cpython-310.pyc │ ├── urls.cpython-311.pyc │ ├── urls.cpython-38.pyc │ └── urls.cpython-39.pyc ├── admin.py ├── apps.py ├── forms.py ├── management │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-311.pyc │ │ ├── __init__.cpython-38.pyc │ │ └── __init__.cpython-39.pyc │ └── commands │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-311.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── bot.cpython-310.pyc │ │ ├── bot.cpython-311.pyc │ │ ├── bot.cpython-38.pyc │ │ ├── bot.cpython-39.pyc │ │ ├── config.cpython-310.pyc │ │ ├── config.cpython-311.pyc │ │ ├── config.cpython-38.pyc │ │ ├── config.cpython-39.pyc │ │ ├── db.cpython-310.pyc │ │ ├── db.cpython-311.pyc │ │ ├── db.cpython-38.pyc │ │ ├── db.cpython-39.pyc │ │ ├── keyboard.cpython-310.pyc │ │ ├── keyboard.cpython-311.pyc │ │ ├── keyboard.cpython-38.pyc │ │ ├── keyboard.cpython-39.pyc │ │ ├── main.cpython-310.pyc │ │ ├── main.cpython-311.pyc │ │ ├── main.cpython-38.pyc │ │ └── main.cpython-39.pyc │ │ ├── bot.py │ │ ├── config.py │ │ ├── db.py │ │ ├── functions.py │ │ ├── keyboard.py │ │ └── main.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_applications_status.py │ ├── 0003_applications_uniquekey.py │ ├── 0004_alter_applications_address_alter_applications_note_and_more.py │ ├── 0005_alter_profile_user_id.py │ ├── 0006_alter_applications_user.py │ ├── 0007_alter_applications_status.py │ ├── 0008_alter_applications_status.py │ ├── 0009_alter_applications_status_alter_profile_role_and_more.py │ ├── 0010_alter_profile_role.py │ ├── 0011_alter_applications_user.py │ ├── 0012_alter_profile_first_name_alter_profile_role.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-310.pyc │ │ ├── 0001_initial.cpython-311.pyc │ │ ├── 0001_initial.cpython-38.pyc │ │ ├── 0001_initial.cpython-39.pyc │ │ ├── 0002_alter_applications_driver.cpython-38.pyc │ │ ├── 0002_alter_applications_driver.cpython-39.pyc │ │ ├── 0002_alter_applications_status.cpython-311.pyc │ │ ├── 0002_applications_count_profile_username_and_more.cpython-39.pyc │ │ ├── 0003_alter_profile_username_alter_rolecode_code.cpython-39.pyc │ │ ├── 0003_applications_uniquekey.cpython-311.pyc │ │ ├── 0003_remove_applications_count.cpython-38.pyc │ │ ├── 0003_remove_applications_count.cpython-39.pyc │ │ ├── 0004_alter_applications_address_alter_applications_note_and_more.cpython-311.pyc │ │ ├── 0004_alter_rolecode_code.cpython-39.pyc │ │ ├── 0004_applications_location.cpython-38.pyc │ │ ├── 0004_applications_location.cpython-39.pyc │ │ ├── 0005_alter_applications_options_alter_profile_options_and_more.cpython-38.pyc │ │ ├── 0005_alter_applications_options_alter_profile_options_and_more.cpython-39.pyc │ │ ├── 0005_alter_profile_user_id.cpython-311.pyc │ │ ├── 0005_alter_profile_username_alter_rolecode_code.cpython-39.pyc │ │ ├── 0006_alter_applications_user.cpython-311.pyc │ │ ├── 0006_alter_rolecode_code.cpython-39.pyc │ │ ├── 0006_alter_rolecode_options_and_more.cpython-38.pyc │ │ ├── 0006_alter_rolecode_options_and_more.cpython-39.pyc │ │ ├── 0007_alter_applications_price.cpython-39.pyc │ │ ├── 0007_alter_applications_status.cpython-311.pyc │ │ ├── 0007_applications_phone.cpython-38.pyc │ │ ├── 0007_applications_phone.cpython-39.pyc │ │ ├── 0008_alter_applications_status.cpython-311.pyc │ │ ├── 0008_profile_first_name.cpython-38.pyc │ │ ├── 0008_profile_first_name.cpython-39.pyc │ │ ├── 0008_remove_applications_photo.cpython-39.pyc │ │ ├── 0009_alter_applications_status_alter_profile_role_and_more.cpython-311.pyc │ │ ├── 0009_alter_profile_first_name.cpython-38.pyc │ │ ├── 0009_alter_profile_first_name.cpython-39.pyc │ │ ├── 0009_applications_photo.cpython-39.pyc │ │ ├── 0010_alter_applications_photo.cpython-39.pyc │ │ ├── 0010_alter_profile_role.cpython-311.pyc │ │ ├── 0010_applications_time_update_location.cpython-38.pyc │ │ ├── 0010_applications_time_update_location.cpython-39.pyc │ │ ├── 0011_alter_applications_user.cpython-311.pyc │ │ ├── 0011_applications_create_time.cpython-38.pyc │ │ ├── 0011_applications_create_time.cpython-39.pyc │ │ ├── 0011_applications_driver.cpython-39.pyc │ │ ├── 0012_alter_profile_first_name_alter_profile_role.cpython-311.pyc │ │ ├── 0012_remove_applications_driver.cpython-39.pyc │ │ ├── 0012_report_alter_applications_time_update_location.cpython-38.pyc │ │ ├── 0012_report_alter_applications_time_update_location.cpython-39.pyc │ │ ├── 0013_applications_canceled_reason.cpython-38.pyc │ │ ├── 0013_applications_canceled_reason.cpython-39.pyc │ │ ├── 0014_delete_report.cpython-38.pyc │ │ ├── 0014_delete_report.cpython-39.pyc │ │ ├── 0015_applications_direction.cpython-38.pyc │ │ ├── 0015_applications_direction.cpython-39.pyc │ │ ├── 0016_alter_applications_direction.cpython-38.pyc │ │ ├── 0016_alter_applications_direction.cpython-39.pyc │ │ ├── 0017_applications_location_time.cpython-38.pyc │ │ ├── 0017_applications_location_time.cpython-39.pyc │ │ ├── 0018_applications_delivery_information_and_more.cpython-38.pyc │ │ ├── 0018_applications_delivery_information_and_more.cpython-39.pyc │ │ ├── 0019_alter_applications_create_time.cpython-38.pyc │ │ ├── 0019_alter_applications_create_time.cpython-39.pyc │ │ ├── 0020_applications_bool_status.cpython-39.pyc │ │ ├── 0020_products_remove_applications_photo_and_more.cpython-38.pyc │ │ ├── 0020_products_remove_applications_photo_and_more.cpython-39.pyc │ │ ├── 0021_alter_applications_bool_status_and_more.cpython-39.pyc │ │ ├── 0021_applications_checks_document_and_more.cpython-39.pyc │ │ ├── 0022_alter_applications_product.cpython-39.pyc │ │ ├── 0022_applications_opt_price.cpython-39.pyc │ │ ├── 0023_alter_applications_bool_count.cpython-39.pyc │ │ ├── 0023_remove_applications_opt_price.cpython-39.pyc │ │ ├── 0024_alter_applications_status.cpython-39.pyc │ │ ├── 0024_products.cpython-39.pyc │ │ ├── 0025_alter_applications_status.cpython-39.pyc │ │ ├── 0025_products_photo.cpython-39.pyc │ │ ├── 0026_alter_applications_status.cpython-39.pyc │ │ ├── 0026_alter_products_photo.cpython-39.pyc │ │ ├── 0027_alter_applications_create_time.cpython-39.pyc │ │ ├── 0027_products_product_percent_products_product_suum.cpython-39.pyc │ │ ├── 0028_alter_products_product_percent.cpython-39.pyc │ │ ├── 0029_remove_applications_photo_applications_products.cpython-39.pyc │ │ ├── 0030_alter_applications_products.cpython-39.pyc │ │ ├── 0031_products_fake_count.cpython-39.pyc │ │ ├── 0032_alter_products_count.cpython-39.pyc │ │ ├── 0033_remove_applications_products_applications_products.cpython-39.pyc │ │ ├── 0034_alter_products_count.cpython-39.pyc │ │ ├── 0035_alter_products_count.cpython-39.pyc │ │ ├── 0036_applications_bool_count.cpython-39.pyc │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-311.pyc │ │ ├── __init__.cpython-38.pyc │ │ └── __init__.cpython-39.pyc ├── models.py ├── sheets.py └── urls.py ├── db.sqlite3 ├── images ├── bot1.png ├── bot2.png └── server1.png ├── manage.py ├── media ├── documents │ ├── 5285375327_2174.pdf │ ├── 5285375327_2179.pdf │ ├── 5285375327_2943.pdf │ └── 5285375327_3658.pdf ├── images │ └── 2022 │ │ └── 08 │ │ └── 11 │ │ └── Что-такое-фото.jpeg └── users │ ├── axarudxazoqyotofkayr.jpg │ ├── bndyojnbwuupkepgardl.jpg │ ├── bqvwwnrzrdewnzllgrka.jpg │ ├── egduvuonxgkpvyaepqix.jpg │ ├── kalregjrpzpslghmtife.jpg │ ├── kebzfrotymoukfgdxosm.jpg │ ├── qrhfmkavvsssllimmqxm.jpg │ ├── sqjwiwgdsplvydbqhuac.jpg │ ├── tszecxzcuffmppgesnrz.jpg │ ├── vyjeaaqrejyooiljlbau.jpg │ ├── xdgvmyjsvmvkzdrnfafb.jpg │ └── ydnitdbbbjpwqjgpggfd.jpg ├── products.xlsx ├── requirements.txt ├── scrapping_xlsx.py ├── script ├── __pycache__ │ ├── functions.cpython-311.pyc │ ├── variables.cpython-311.pyc │ └── worker.cpython-311.pyc ├── credentials.json ├── functions.py ├── token.json ├── variables.py └── worker.py ├── static └── 1.css ├── staticfiles ├── admin │ ├── css │ │ ├── autocomplete.css │ │ ├── base.css │ │ ├── changelists.css │ │ ├── dashboard.css │ │ ├── fonts.css │ │ ├── forms.css │ │ ├── login.css │ │ ├── nav_sidebar.css │ │ ├── responsive.css │ │ ├── responsive_rtl.css │ │ ├── rtl.css │ │ ├── vendor │ │ │ └── select2 │ │ │ │ ├── LICENSE-SELECT2.md │ │ │ │ ├── select2.css │ │ │ │ └── select2.min.css │ │ └── widgets.css │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── Roboto-Bold-webfont.woff │ │ ├── Roboto-Light-webfont.woff │ │ └── Roboto-Regular-webfont.woff │ ├── img │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── calendar-icons.svg │ │ ├── gis │ │ │ ├── move_vertex_off.svg │ │ │ └── move_vertex_on.svg │ │ ├── icon-addlink.svg │ │ ├── icon-alert.svg │ │ ├── icon-calendar.svg │ │ ├── icon-changelink.svg │ │ ├── icon-clock.svg │ │ ├── icon-deletelink.svg │ │ ├── icon-no.svg │ │ ├── icon-unknown-alt.svg │ │ ├── icon-unknown.svg │ │ ├── icon-viewlink.svg │ │ ├── icon-yes.svg │ │ ├── inline-delete.svg │ │ ├── search.svg │ │ ├── selector-icons.svg │ │ ├── sorting-icons.svg │ │ ├── tooltag-add.svg │ │ └── tooltag-arrowright.svg │ └── js │ │ ├── SelectBox.js │ │ ├── SelectFilter2.js │ │ ├── actions.js │ │ ├── admin │ │ ├── DateTimeShortcuts.js │ │ └── RelatedObjectLookups.js │ │ ├── autocomplete.js │ │ ├── calendar.js │ │ ├── cancel.js │ │ ├── change_form.js │ │ ├── collapse.js │ │ ├── core.js │ │ ├── inlines.js │ │ ├── jquery.init.js │ │ ├── nav_sidebar.js │ │ ├── popup_response.js │ │ ├── prepopulate.js │ │ ├── prepopulate_init.js │ │ ├── urlify.js │ │ └── vendor │ │ ├── jquery │ │ ├── LICENSE.txt │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── select2 │ │ ├── LICENSE.md │ │ ├── i18n │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dsb.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hsb.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ ├── select2.full.js │ │ └── select2.full.min.js │ │ └── xregexp │ │ ├── LICENSE.txt │ │ ├── xregexp.js │ │ └── xregexp.min.js ├── grappelli │ ├── images │ │ ├── backgrounds │ │ │ ├── changelist-results.png │ │ │ ├── loading-small.gif │ │ │ ├── messagelist.png │ │ │ ├── nav-grabber.gif │ │ │ └── ui-sortable-placeholder.png │ │ ├── icons-s79f97b581c.png │ │ ├── icons-small-sc29b5b842f.png │ │ ├── icons-small │ │ │ ├── add-link.png │ │ │ ├── add-link_hover.png │ │ │ ├── autocomplete-multiple.png │ │ │ ├── autocomplete-single.png │ │ │ ├── change-link.png │ │ │ ├── change-link_hover.png │ │ │ ├── delete-link.png │ │ │ ├── filter-choice-selected.png │ │ │ ├── link-external-rtl.png │ │ │ ├── link-external-rtl_hover.png │ │ │ ├── link-external.png │ │ │ ├── link-external_hover.png │ │ │ ├── link-internal-rtl.png │ │ │ ├── link-internal-rtl_hover.png │ │ │ ├── link-internal.png │ │ │ ├── link-internal_hover.png │ │ │ ├── sort-remove.png │ │ │ ├── tools-related-add-handler-disabled.png │ │ │ ├── tools-related-add-handler.png │ │ │ ├── tools-related-add-handler_hover.png │ │ │ ├── tools-related-edit-handler-disabled.png │ │ │ ├── tools-related-edit-handler.png │ │ │ ├── tools-related-edit-handler_hover.png │ │ │ ├── tools-related-remove-handler-disabled.png │ │ │ ├── tools-related-remove-handler.png │ │ │ └── tools-related-remove-handler_hover.png │ │ └── icons │ │ │ ├── add-another.png │ │ │ ├── add-another_hover.png │ │ │ ├── back-link-rtl.png │ │ │ ├── back-link-rtl_hover.png │ │ │ ├── back-link.png │ │ │ ├── back-link_hover.png │ │ │ ├── breadcrumbs-rtl.png │ │ │ ├── breadcrumbs-rtl_hover.png │ │ │ ├── breadcrumbs.png │ │ │ ├── breadcrumbs_hover.png │ │ │ ├── date-hierarchy-back-rtl.png │ │ │ ├── date-hierarchy-back-rtl_hover.png │ │ │ ├── date-hierarchy-back.png │ │ │ ├── date-hierarchy-back_hover.png │ │ │ ├── datepicker.png │ │ │ ├── datepicker_hover.png │ │ │ ├── datetime-now.png │ │ │ ├── datetime-now_hover.png │ │ │ ├── form-select.png │ │ │ ├── link-internal-rtl.png │ │ │ ├── link-internal-rtl_hover.png │ │ │ ├── object-tools-add-link.png │ │ │ ├── object-tools-viewsite-link.png │ │ │ ├── pulldown-handler.png │ │ │ ├── pulldown-handler_hover.png │ │ │ ├── pulldown-handler_selected.png │ │ │ ├── related-lookup-m2m.png │ │ │ ├── related-lookup-m2m_hover.png │ │ │ ├── related-lookup.png │ │ │ ├── related-lookup_hover.png │ │ │ ├── related-remove.png │ │ │ ├── related-remove_hover.png │ │ │ ├── searchbox.png │ │ │ ├── selector-add-m2m-horizontal.png │ │ │ ├── selector-add-m2m-horizontal_hover.png │ │ │ ├── selector-add-m2m-vertical.png │ │ │ ├── selector-add-m2m-vertical_hover.png │ │ │ ├── selector-filter.png │ │ │ ├── selector-remove-m2m-horizontal.png │ │ │ ├── selector-remove-m2m-horizontal_hover.png │ │ │ ├── selector-remove-m2m-vertical.png │ │ │ ├── selector-remove-m2m-vertical_hover.png │ │ │ ├── sort-remove.png │ │ │ ├── sort-remove_hover.png │ │ │ ├── sorted-ascending.png │ │ │ ├── sorted-descending.png │ │ │ ├── status-no.png │ │ │ ├── status-unknown.png │ │ │ ├── status-yes.png │ │ │ ├── th-ascending.png │ │ │ ├── th-descending.png │ │ │ ├── timepicker.png │ │ │ ├── timepicker_hover.png │ │ │ ├── tools-add-handler.png │ │ │ ├── tools-add-handler_hover.png │ │ │ ├── tools-arrow-down-handler.png │ │ │ ├── tools-arrow-down-handler_hover.png │ │ │ ├── tools-arrow-up-handler.png │ │ │ ├── tools-arrow-up-handler_hover.png │ │ │ ├── tools-close-handler.png │ │ │ ├── tools-close-handler_hover.png │ │ │ ├── tools-delete-handler-predelete.png │ │ │ ├── tools-delete-handler.png │ │ │ ├── tools-delete-handler_hover.png │ │ │ ├── tools-drag-handler.png │ │ │ ├── tools-drag-handler_hover.png │ │ │ ├── tools-edit-handler.png │ │ │ ├── tools-edit-handler_hover.png │ │ │ ├── tools-open-handler.png │ │ │ ├── tools-open-handler_hover.png │ │ │ ├── tools-remove-handler.png │ │ │ ├── tools-remove-handler_hover.png │ │ │ ├── tools-trash-handler.png │ │ │ ├── tools-trash-handler_hover.png │ │ │ ├── tools-trash-list-toggle-handler.png │ │ │ ├── tools-trash-list-toggle-handler_hover.png │ │ │ ├── tools-viewsite-link.png │ │ │ ├── tools-viewsite-link_hover.png │ │ │ ├── ui-datepicker-next.png │ │ │ ├── ui-datepicker-next_hover.png │ │ │ ├── ui-datepicker-prev.png │ │ │ └── ui-datepicker-prev_hover.png │ ├── img │ │ └── admin │ │ │ ├── arrow-down.gif │ │ │ └── arrow-up.gif │ ├── jquery │ │ ├── LICENSE-JQUERY.txt │ │ ├── LICENSE.txt │ │ ├── jquery-migrate-3.0.1.js │ │ ├── jquery-migrate-3.0.1.min.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── ui │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ ├── external │ │ │ └── jquery │ │ │ │ └── jquery.js │ │ │ ├── images │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── index.html │ │ │ ├── jquery-ui.css │ │ │ ├── jquery-ui.js │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery-ui.structure.css │ │ │ ├── jquery-ui.structure.min.css │ │ │ ├── jquery-ui.theme.css │ │ │ ├── jquery-ui.theme.min.css │ │ │ └── package.json │ ├── js │ │ ├── grappelli.js │ │ ├── grappelli.min.js │ │ ├── jquery.grp_autocomplete_fk.js │ │ ├── jquery.grp_autocomplete_generic.js │ │ ├── jquery.grp_autocomplete_m2m.js │ │ ├── jquery.grp_collapsible.js │ │ ├── jquery.grp_collapsible_group.js │ │ ├── jquery.grp_inline.js │ │ ├── jquery.grp_related_fk.js │ │ ├── jquery.grp_related_generic.js │ │ ├── jquery.grp_related_m2m.js │ │ └── jquery.grp_timepicker.js │ ├── stylesheets │ │ ├── mueller │ │ │ ├── grid │ │ │ │ ├── output-rtl.css │ │ │ │ └── output.css │ │ │ └── screen.css │ │ ├── partials │ │ │ └── custom │ │ │ │ └── tinymce.css │ │ ├── rtl.css │ │ └── screen.css │ ├── tinymce │ │ ├── changelog.txt │ │ ├── examples │ │ │ ├── accessibility.html │ │ │ ├── css │ │ │ │ ├── content.css │ │ │ │ └── word.css │ │ │ ├── custom_formats.html │ │ │ ├── full.html │ │ │ ├── index.html │ │ │ ├── lists │ │ │ │ ├── image_list.js │ │ │ │ ├── link_list.js │ │ │ │ ├── media_list.js │ │ │ │ └── template_list.js │ │ │ ├── media │ │ │ │ ├── logo.jpg │ │ │ │ ├── logo_over.jpg │ │ │ │ ├── sample.avi │ │ │ │ ├── sample.dcr │ │ │ │ ├── sample.flv │ │ │ │ ├── sample.mov │ │ │ │ ├── sample.ram │ │ │ │ ├── sample.rm │ │ │ │ └── sample.swf │ │ │ ├── menu.html │ │ │ ├── simple.html │ │ │ ├── skins.html │ │ │ ├── templates │ │ │ │ ├── layout1.htm │ │ │ │ └── snippet1.htm │ │ │ └── word.html │ │ └── jscripts │ │ │ └── tiny_mce │ │ │ ├── langs │ │ │ └── en.js │ │ │ ├── license.txt │ │ │ ├── plugins │ │ │ ├── advhr │ │ │ │ ├── css │ │ │ │ │ └── advhr.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── rule.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── rule.htm │ │ │ ├── advimage │ │ │ │ ├── css │ │ │ │ │ └── advimage.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── image.htm │ │ │ │ ├── img │ │ │ │ │ └── sample.gif │ │ │ │ ├── js │ │ │ │ │ └── image.js │ │ │ │ └── langs │ │ │ │ │ └── en_dlg.js │ │ │ ├── advimage_orig │ │ │ │ ├── css │ │ │ │ │ └── advimage.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── image.htm │ │ │ │ ├── img │ │ │ │ │ └── sample.gif │ │ │ │ ├── js │ │ │ │ │ └── image.js │ │ │ │ └── langs │ │ │ │ │ └── en_dlg.js │ │ │ ├── advlink │ │ │ │ ├── css │ │ │ │ │ └── advlink.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── advlink.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── link.htm │ │ │ ├── advlink_orig │ │ │ │ ├── css │ │ │ │ │ └── advlink.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── advlink.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── link.htm │ │ │ ├── advlist │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── autolink │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── autoresize │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── autosave │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── bbcode │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── contextmenu │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── directionality │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── emotions │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── emotions.htm │ │ │ │ ├── img │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ └── smiley-yell.gif │ │ │ │ ├── js │ │ │ │ │ └── emotions.js │ │ │ │ └── langs │ │ │ │ │ └── en_dlg.js │ │ │ ├── example │ │ │ │ ├── dialog.htm │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── img │ │ │ │ │ └── example.gif │ │ │ │ ├── js │ │ │ │ │ └── dialog.js │ │ │ │ └── langs │ │ │ │ │ ├── en.js │ │ │ │ │ └── en_dlg.js │ │ │ ├── example_dependency │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── fullpage │ │ │ │ ├── css │ │ │ │ │ └── fullpage.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── fullpage.htm │ │ │ │ ├── js │ │ │ │ │ └── fullpage.js │ │ │ │ └── langs │ │ │ │ │ └── en_dlg.js │ │ │ ├── fullscreen │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ └── fullscreen.htm │ │ │ ├── grappelli │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── img │ │ │ │ │ ├── show_advanced.png │ │ │ │ │ └── visualchars.png │ │ │ │ └── langs │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── pl.js │ │ │ │ │ └── ru.js │ │ │ ├── grappelli_contextmenu │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ └── langs │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── pl.js │ │ │ │ │ └── ru.js │ │ │ ├── iespell │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── inlinepopups │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── skins │ │ │ │ │ └── clearlooks2 │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── alert.gif │ │ │ │ │ │ ├── button.gif │ │ │ │ │ │ ├── buttons.gif │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ ├── corners.gif │ │ │ │ │ │ ├── horizontal.gif │ │ │ │ │ │ └── vertical.gif │ │ │ │ │ │ └── window.css │ │ │ │ └── template.htm │ │ │ ├── insertdatetime │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── layer │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── legacyoutput │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── lists │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── media │ │ │ │ ├── css │ │ │ │ │ └── media.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ ├── embed.js │ │ │ │ │ └── media.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── media.htm │ │ │ │ └── moxieplayer.swf │ │ │ ├── media_orig │ │ │ │ ├── css │ │ │ │ │ └── media.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ ├── embed.js │ │ │ │ │ └── media.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── media.htm │ │ │ │ └── moxieplayer.swf │ │ │ ├── nonbreaking │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── noneditable │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── pagebreak │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── paste │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ ├── pastetext.js │ │ │ │ │ └── pasteword.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── pastetext.htm │ │ │ │ └── pasteword.htm │ │ │ ├── paste_orig │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ ├── pastetext.js │ │ │ │ │ └── pasteword.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── pastetext.htm │ │ │ │ └── pasteword.htm │ │ │ ├── preview │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── example.html │ │ │ │ ├── jscripts │ │ │ │ │ └── embed.js │ │ │ │ └── preview.html │ │ │ ├── print │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── save │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── searchreplace │ │ │ │ ├── css │ │ │ │ │ └── searchreplace.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── searchreplace.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── searchreplace.htm │ │ │ ├── searchreplace_orig │ │ │ │ ├── css │ │ │ │ │ └── searchreplace.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── searchreplace.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── searchreplace.htm │ │ │ ├── spellchecker │ │ │ │ ├── css │ │ │ │ │ └── content.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ └── img │ │ │ │ │ └── wline.gif │ │ │ ├── style │ │ │ │ ├── css │ │ │ │ │ └── props.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── props.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── props.htm │ │ │ │ └── readme.txt │ │ │ ├── tabfocus │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── table │ │ │ │ ├── cell.htm │ │ │ │ ├── css │ │ │ │ │ ├── cell.css │ │ │ │ │ ├── row.css │ │ │ │ │ └── table.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ ├── cell.js │ │ │ │ │ ├── merge_cells.js │ │ │ │ │ ├── row.js │ │ │ │ │ └── table.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── merge_cells.htm │ │ │ │ ├── row.htm │ │ │ │ └── table.htm │ │ │ ├── template │ │ │ │ ├── blank.htm │ │ │ │ ├── css │ │ │ │ │ └── template.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── template.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── template.htm │ │ │ ├── template_orig │ │ │ │ ├── blank.htm │ │ │ │ ├── css │ │ │ │ │ └── template.css │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── js │ │ │ │ │ └── template.js │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ └── template.htm │ │ │ ├── visualblocks │ │ │ │ ├── css │ │ │ │ │ └── visualblocks.css │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── visualchars │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ ├── wordcount │ │ │ │ ├── editor_plugin.js │ │ │ │ └── editor_plugin_src.js │ │ │ └── xhtmlxtras │ │ │ │ ├── abbr.htm │ │ │ │ ├── acronym.htm │ │ │ │ ├── attributes.htm │ │ │ │ ├── cite.htm │ │ │ │ ├── css │ │ │ │ ├── attributes.css │ │ │ │ └── popup.css │ │ │ │ ├── del.htm │ │ │ │ ├── editor_plugin.js │ │ │ │ ├── editor_plugin_src.js │ │ │ │ ├── ins.htm │ │ │ │ ├── js │ │ │ │ ├── abbr.js │ │ │ │ ├── acronym.js │ │ │ │ ├── attributes.js │ │ │ │ ├── cite.js │ │ │ │ ├── del.js │ │ │ │ ├── element_common.js │ │ │ │ └── ins.js │ │ │ │ └── langs │ │ │ │ └── en_dlg.js │ │ │ ├── themes │ │ │ ├── advanced │ │ │ │ ├── about.htm │ │ │ │ ├── anchor.htm │ │ │ │ ├── charmap.htm │ │ │ │ ├── color_picker.htm │ │ │ │ ├── editor_template.js │ │ │ │ ├── editor_template_src.js │ │ │ │ ├── image.htm │ │ │ │ ├── img │ │ │ │ │ ├── colorpicker.jpg │ │ │ │ │ ├── flash.gif │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── iframe.gif │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ ├── quicktime.gif │ │ │ │ │ ├── realmedia.gif │ │ │ │ │ ├── shockwave.gif │ │ │ │ │ ├── trans.gif │ │ │ │ │ ├── video.gif │ │ │ │ │ └── windowsmedia.gif │ │ │ │ ├── js │ │ │ │ │ ├── about.js │ │ │ │ │ ├── anchor.js │ │ │ │ │ ├── charmap.js │ │ │ │ │ ├── color_picker.js │ │ │ │ │ ├── image.js │ │ │ │ │ ├── link.js │ │ │ │ │ └── source_editor.js │ │ │ │ ├── langs │ │ │ │ │ ├── en.js │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── shortcuts.htm │ │ │ │ ├── skins │ │ │ │ │ ├── default │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── buttons.png │ │ │ │ │ │ │ ├── items.gif │ │ │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ │ │ ├── menu_check.gif │ │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ │ └── tabs.gif │ │ │ │ │ │ └── ui.css │ │ │ │ │ ├── grappelli │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ ├── content_base.css │ │ │ │ │ │ ├── content_documentstructure.css │ │ │ │ │ │ ├── content_documentstructure_cs.css │ │ │ │ │ │ ├── content_documentstructure_de.css │ │ │ │ │ │ ├── content_documentstructure_en.css │ │ │ │ │ │ ├── content_documentstructure_pl.css │ │ │ │ │ │ ├── content_grid.css │ │ │ │ │ │ ├── content_typography.css │ │ │ │ │ │ ├── customized.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── buttons │ │ │ │ │ │ │ │ ├── blockquote.png │ │ │ │ │ │ │ │ ├── bold.png │ │ │ │ │ │ │ │ ├── bullist.png │ │ │ │ │ │ │ │ ├── charmap.png │ │ │ │ │ │ │ │ ├── cleanup.png │ │ │ │ │ │ │ │ ├── code.png │ │ │ │ │ │ │ │ ├── fullscreen.png │ │ │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ │ │ ├── italic.png │ │ │ │ │ │ │ │ ├── justifycenter.png │ │ │ │ │ │ │ │ ├── justifyfull.png │ │ │ │ │ │ │ │ ├── justifyleft.png │ │ │ │ │ │ │ │ ├── justifyright.png │ │ │ │ │ │ │ │ ├── link.png │ │ │ │ │ │ │ │ ├── media.png │ │ │ │ │ │ │ │ ├── numlist.png │ │ │ │ │ │ │ │ ├── pasteword.png │ │ │ │ │ │ │ │ ├── redo.png │ │ │ │ │ │ │ │ ├── search.png │ │ │ │ │ │ │ │ ├── show_advanced.png │ │ │ │ │ │ │ │ ├── table.png │ │ │ │ │ │ │ │ ├── table_cell_props.png │ │ │ │ │ │ │ │ ├── table_col_after.png │ │ │ │ │ │ │ │ ├── table_col_before.png │ │ │ │ │ │ │ │ ├── table_delete_col.png │ │ │ │ │ │ │ │ ├── table_delete_row.png │ │ │ │ │ │ │ │ ├── table_merge_cells.png │ │ │ │ │ │ │ │ ├── table_row_after.png │ │ │ │ │ │ │ │ ├── table_row_before.png │ │ │ │ │ │ │ │ ├── table_row_props.png │ │ │ │ │ │ │ │ ├── table_split_cells.png │ │ │ │ │ │ │ │ ├── template.png │ │ │ │ │ │ │ │ ├── underline.png │ │ │ │ │ │ │ │ ├── undo.png │ │ │ │ │ │ │ │ ├── unlink.png │ │ │ │ │ │ │ │ └── visualchars.png │ │ │ │ │ │ │ ├── customized │ │ │ │ │ │ │ │ ├── button_pagebreak.png │ │ │ │ │ │ │ │ └── pagebreak.png │ │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ │ ├── icon-fb_show-hover.png │ │ │ │ │ │ │ │ ├── icon-fb_show.png │ │ │ │ │ │ │ │ └── icon-mceResize.png │ │ │ │ │ │ │ └── menu │ │ │ │ │ │ │ │ └── icon-mceOpen.png │ │ │ │ │ │ └── ui.css │ │ │ │ │ ├── highcontrast │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ └── ui.css │ │ │ │ │ └── o2k7 │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── button_bg.png │ │ │ │ │ │ ├── button_bg_black.png │ │ │ │ │ │ └── button_bg_silver.png │ │ │ │ │ │ ├── ui.css │ │ │ │ │ │ ├── ui_black.css │ │ │ │ │ │ └── ui_silver.css │ │ │ │ └── source_editor.htm │ │ │ └── simple │ │ │ │ ├── editor_template.js │ │ │ │ ├── editor_template_src.js │ │ │ │ ├── img │ │ │ │ └── icons.gif │ │ │ │ ├── langs │ │ │ │ └── en.js │ │ │ │ └── skins │ │ │ │ ├── default │ │ │ │ ├── content.css │ │ │ │ └── ui.css │ │ │ │ └── o2k7 │ │ │ │ ├── content.css │ │ │ │ ├── img │ │ │ │ └── button_bg.png │ │ │ │ └── ui.css │ │ │ ├── tiny_mce.js │ │ │ ├── tiny_mce_popup.js │ │ │ ├── tiny_mce_src.js │ │ │ └── utils │ │ │ ├── editable_selects.js │ │ │ ├── form_utils.js │ │ │ ├── mctabs.js │ │ │ └── validate.js │ └── tinymce_setup │ │ └── tinymce_setup.js └── tilda │ ├── tilda-blocks-page29693562.min.css@t=1660664639.css │ └── tilda-blocks-page29693562.min.js@t=1660664639 ├── statistics └── 2022-08-28_17-22-04 │ ├── details.md │ ├── diff-details.md │ ├── diff.csv │ ├── diff.md │ ├── diff.txt │ ├── results.csv │ ├── results.json │ ├── results.md │ └── results.txt └── templates ├── admin └── stats.html ├── django └── contrib │ └── admin │ └── stats.html ├── index.html ├── lending_files ├── __1.svg ├── __16.svg ├── __20.svg ├── css2.css ├── jquery-1.js ├── lazyload-1.js ├── template_illustratio.svg ├── template_illustratio_002.svg ├── template_illustratio_003.svg ├── tilda-blocks-page29693562.css ├── tilda-blocks-page29693562.js ├── tilda-events-1.js ├── tilda-fallback-1.js ├── tilda-forms-1.css ├── tilda-forms-1.js ├── tilda-grid-3.css ├── tilda-menu-1.js ├── tilda-scripts-3.js ├── tilda-stat-1.js ├── tilda-zero-1.js ├── tilda-zero-forms-1.js └── tildacopy.png └── templates └── lending.html /.gitignore: -------------------------------------------------------------------------------- 1 | env 2 | .env -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/__init__.py -------------------------------------------------------------------------------- /app/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /app/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /app/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /app/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /app/__pycache__/celery.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/__pycache__/celery.cpython-311.pyc -------------------------------------------------------------------------------- /app/__pycache__/settings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/__pycache__/settings.cpython-310.pyc -------------------------------------------------------------------------------- /app/__pycache__/settings.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/__pycache__/settings.cpython-311.pyc -------------------------------------------------------------------------------- /app/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /app/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /app/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /app/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /app/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /app/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /app/__pycache__/wsgi.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/__pycache__/wsgi.cpython-310.pyc -------------------------------------------------------------------------------- /app/__pycache__/wsgi.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/__pycache__/wsgi.cpython-311.pyc -------------------------------------------------------------------------------- /app/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /app/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /app/asgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | ASGI config for app project. 3 | 4 | It exposes the ASGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/4.0/howto/deployment/asgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.asgi import get_asgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'app.settings') 15 | 16 | application = get_asgi_application() 17 | -------------------------------------------------------------------------------- /app/custom_admin/templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/app/custom_admin/templates/__init__.py -------------------------------------------------------------------------------- /app/custom_admin/templates/admin/index.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/index.html" %} 2 | 3 | {% comment %}{% block extrastyle %} 4 | {{ block.super }} 5 | {# --- custom styles --- #} 6 | {% endblock %}{% endcomment %} 7 | 8 | {% block content %} 9 |
10 |

Перейти к статистике

11 |
12 | 13 | {{ block.super }} 14 | {% endblock %} -------------------------------------------------------------------------------- /app/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for app project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/4.0/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'app.settings') 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /aviato/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__init__.py -------------------------------------------------------------------------------- /aviato/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/admin.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/admin.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/apps.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/apps.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/forms.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/forms.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/tasks.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/tasks.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AviatoConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'aviato' 7 | -------------------------------------------------------------------------------- /aviato/forms.py: -------------------------------------------------------------------------------- 1 | from django import forms 2 | from .models import * 3 | 4 | class ProfileForm(forms.ModelForm): 5 | class Meta: 6 | model = Profile 7 | fields = ["user_id"] 8 | 9 | class Geo(forms.Form): 10 | id_or_phone = forms.CharField(max_length=100, label="Введите id товара или же ваш номер телефона") -------------------------------------------------------------------------------- /aviato/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/__init__.py -------------------------------------------------------------------------------- /aviato/management/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /aviato/management/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/management/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/management/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__init__.py -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/bot.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/bot.cpython-310.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/bot.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/bot.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/bot.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/bot.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/bot.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/bot.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/config.cpython-310.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/config.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/config.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/config.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/config.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/db.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/db.cpython-310.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/db.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/db.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/db.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/db.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/db.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/db.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/keyboard.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/keyboard.cpython-310.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/keyboard.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/keyboard.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/keyboard.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/keyboard.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/keyboard.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/keyboard.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/main.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/main.cpython-310.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/main.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/main.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/main.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/main.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/management/commands/__pycache__/main.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/management/commands/__pycache__/main.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/management/commands/bot.py: -------------------------------------------------------------------------------- 1 | from django.core.management.base import BaseCommand 2 | from .main import * 3 | 4 | class Command(BaseCommand): 5 | help = "Telegram Bot" 6 | 7 | def handle(self, *args, **options): 8 | b = executor.start_polling(dp, skip_updates=True) -------------------------------------------------------------------------------- /aviato/management/commands/config.py: -------------------------------------------------------------------------------- 1 | # API_TOKEN = '5361993769:AAHzmGxpekGYIcL_ljFMz7iElI9FHNrRpIg' # Rukea 2 | API_TOKEN = '5818999369:AAHvTAW6217JBtZ72uynen9UoP2TR427Ngc' # Benefixx 3 | 4 | admins = [1611351870, 5285375327, 198799905] 5 | 6 | # benefixx - 5022906736:AAEdtLYnF3sXv-dy-vt3ko2PiecF8YQhd3E 7 | # Rukea - 5361993769:AAHzmGxpekGYIcL_ljFMz7iElI9FHNrRpIg -------------------------------------------------------------------------------- /aviato/management/commands/functions.py: -------------------------------------------------------------------------------- 1 | import sqlite3 2 | from config import admin 3 | 4 | connection = sqlite3.connect('data.db') 5 | q = connection.cursor() 6 | 7 | 8 | async def antiflood(*args, **kwargs): 9 | m = args[0] 10 | if m.chat.id == admin: 11 | pass 12 | else: 13 | await m.answer("Сработал антифлуд! Прекрати флудить и жди 3 секунды.") -------------------------------------------------------------------------------- /aviato/migrations/0003_applications_uniquekey.py: -------------------------------------------------------------------------------- 1 | # Generated by Django 4.2 on 2023-04-12 11:09 2 | 3 | from django.db import migrations, models 4 | 5 | 6 | class Migration(migrations.Migration): 7 | 8 | dependencies = [ 9 | ('aviato', '0002_alter_applications_status'), 10 | ] 11 | 12 | operations = [ 13 | migrations.AddField( 14 | model_name='applications', 15 | name='uniqueKey', 16 | field=models.CharField(default=1, max_length=5000, verbose_name='Уникальный идентификатор'), 17 | preserve_default=False, 18 | ), 19 | ] 20 | -------------------------------------------------------------------------------- /aviato/migrations/0005_alter_profile_user_id.py: -------------------------------------------------------------------------------- 1 | # Generated by Django 4.2 on 2023-04-12 12:34 2 | 3 | from django.db import migrations, models 4 | 5 | 6 | class Migration(migrations.Migration): 7 | 8 | dependencies = [ 9 | ('aviato', '0004_alter_applications_address_alter_applications_note_and_more'), 10 | ] 11 | 12 | operations = [ 13 | migrations.AlterField( 14 | model_name='profile', 15 | name='user_id', 16 | field=models.CharField(blank=True, max_length=50, null=True, verbose_name='Айди пользователя'), 17 | ), 18 | ] 19 | -------------------------------------------------------------------------------- /aviato/migrations/0006_alter_applications_user.py: -------------------------------------------------------------------------------- 1 | # Generated by Django 4.2 on 2023-04-12 12:36 2 | 3 | from django.db import migrations, models 4 | import django.db.models.deletion 5 | 6 | 7 | class Migration(migrations.Migration): 8 | 9 | dependencies = [ 10 | ('aviato', '0005_alter_profile_user_id'), 11 | ] 12 | 13 | operations = [ 14 | migrations.AlterField( 15 | model_name='applications', 16 | name='user', 17 | field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, to='aviato.profile', verbose_name='Добавил'), 18 | ), 19 | ] 20 | -------------------------------------------------------------------------------- /aviato/migrations/0007_alter_applications_status.py: -------------------------------------------------------------------------------- 1 | # Generated by Django 4.1.1 on 2023-04-14 09:49 2 | 3 | from django.db import migrations, models 4 | 5 | 6 | class Migration(migrations.Migration): 7 | 8 | dependencies = [ 9 | ('aviato', '0006_alter_applications_user'), 10 | ] 11 | 12 | operations = [ 13 | migrations.AlterField( 14 | model_name='applications', 15 | name='status', 16 | field=models.CharField(blank=True, default='Ожидание подтверждения', max_length=200, null=True, verbose_name='Статус'), 17 | ), 18 | ] 19 | -------------------------------------------------------------------------------- /aviato/migrations/0011_alter_applications_user.py: -------------------------------------------------------------------------------- 1 | # Generated by Django 4.1.1 on 2023-04-30 11:01 2 | 3 | from django.db import migrations, models 4 | import django.db.models.deletion 5 | 6 | 7 | class Migration(migrations.Migration): 8 | 9 | dependencies = [ 10 | ('aviato', '0010_alter_profile_role'), 11 | ] 12 | 13 | operations = [ 14 | migrations.AlterField( 15 | model_name='applications', 16 | name='user', 17 | field=models.ForeignKey(blank=True, default=1, null=True, on_delete=django.db.models.deletion.PROTECT, to='aviato.profile', verbose_name='Добавил'), 18 | ), 19 | ] 20 | -------------------------------------------------------------------------------- /aviato/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__init__.py -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0001_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0001_initial.cpython-310.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0001_initial.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0001_initial.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0002_alter_applications_driver.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0002_alter_applications_driver.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0002_alter_applications_driver.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0002_alter_applications_driver.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0002_alter_applications_status.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0002_alter_applications_status.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0002_applications_count_profile_username_and_more.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0002_applications_count_profile_username_and_more.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0003_alter_profile_username_alter_rolecode_code.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0003_alter_profile_username_alter_rolecode_code.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0003_applications_uniquekey.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0003_applications_uniquekey.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0003_remove_applications_count.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0003_remove_applications_count.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0003_remove_applications_count.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0003_remove_applications_count.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0004_alter_applications_address_alter_applications_note_and_more.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0004_alter_applications_address_alter_applications_note_and_more.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0004_alter_rolecode_code.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0004_alter_rolecode_code.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0004_applications_location.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0004_applications_location.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0004_applications_location.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0004_applications_location.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0005_alter_applications_options_alter_profile_options_and_more.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0005_alter_applications_options_alter_profile_options_and_more.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0005_alter_applications_options_alter_profile_options_and_more.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0005_alter_applications_options_alter_profile_options_and_more.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0005_alter_profile_user_id.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0005_alter_profile_user_id.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0005_alter_profile_username_alter_rolecode_code.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0005_alter_profile_username_alter_rolecode_code.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0006_alter_applications_user.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0006_alter_applications_user.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0006_alter_rolecode_code.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0006_alter_rolecode_code.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0006_alter_rolecode_options_and_more.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0006_alter_rolecode_options_and_more.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0006_alter_rolecode_options_and_more.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0006_alter_rolecode_options_and_more.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0007_alter_applications_price.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0007_alter_applications_price.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0007_alter_applications_status.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0007_alter_applications_status.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0007_applications_phone.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0007_applications_phone.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0007_applications_phone.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0007_applications_phone.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0008_alter_applications_status.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0008_alter_applications_status.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0008_profile_first_name.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0008_profile_first_name.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0008_profile_first_name.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0008_profile_first_name.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0008_remove_applications_photo.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0008_remove_applications_photo.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0009_alter_applications_status_alter_profile_role_and_more.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0009_alter_applications_status_alter_profile_role_and_more.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0009_alter_profile_first_name.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0009_alter_profile_first_name.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0009_alter_profile_first_name.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0009_alter_profile_first_name.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0009_applications_photo.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0009_applications_photo.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0010_alter_applications_photo.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0010_alter_applications_photo.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0010_alter_profile_role.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0010_alter_profile_role.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0010_applications_time_update_location.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0010_applications_time_update_location.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0010_applications_time_update_location.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0010_applications_time_update_location.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0011_alter_applications_user.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0011_alter_applications_user.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0011_applications_create_time.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0011_applications_create_time.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0011_applications_create_time.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0011_applications_create_time.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0011_applications_driver.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0011_applications_driver.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0012_alter_profile_first_name_alter_profile_role.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0012_alter_profile_first_name_alter_profile_role.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0012_remove_applications_driver.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0012_remove_applications_driver.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0012_report_alter_applications_time_update_location.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0012_report_alter_applications_time_update_location.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0012_report_alter_applications_time_update_location.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0012_report_alter_applications_time_update_location.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0013_applications_canceled_reason.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0013_applications_canceled_reason.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0013_applications_canceled_reason.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0013_applications_canceled_reason.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0014_delete_report.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0014_delete_report.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0014_delete_report.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0014_delete_report.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0015_applications_direction.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0015_applications_direction.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0015_applications_direction.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0015_applications_direction.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0016_alter_applications_direction.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0016_alter_applications_direction.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0016_alter_applications_direction.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0016_alter_applications_direction.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0017_applications_location_time.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0017_applications_location_time.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0017_applications_location_time.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0017_applications_location_time.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0018_applications_delivery_information_and_more.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0018_applications_delivery_information_and_more.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0018_applications_delivery_information_and_more.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0018_applications_delivery_information_and_more.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0019_alter_applications_create_time.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0019_alter_applications_create_time.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0019_alter_applications_create_time.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0019_alter_applications_create_time.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0020_applications_bool_status.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0020_applications_bool_status.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0020_products_remove_applications_photo_and_more.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0020_products_remove_applications_photo_and_more.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0020_products_remove_applications_photo_and_more.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0020_products_remove_applications_photo_and_more.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0021_alter_applications_bool_status_and_more.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0021_alter_applications_bool_status_and_more.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0021_applications_checks_document_and_more.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0021_applications_checks_document_and_more.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0022_alter_applications_product.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0022_alter_applications_product.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0022_applications_opt_price.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0022_applications_opt_price.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0023_alter_applications_bool_count.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0023_alter_applications_bool_count.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0023_remove_applications_opt_price.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0023_remove_applications_opt_price.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0024_alter_applications_status.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0024_alter_applications_status.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0024_products.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0024_products.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0025_alter_applications_status.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0025_alter_applications_status.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0025_products_photo.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0025_products_photo.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0026_alter_applications_status.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0026_alter_applications_status.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0026_alter_products_photo.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0026_alter_products_photo.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0027_alter_applications_create_time.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0027_alter_applications_create_time.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0027_products_product_percent_products_product_suum.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0027_products_product_percent_products_product_suum.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0028_alter_products_product_percent.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0028_alter_products_product_percent.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0029_remove_applications_photo_applications_products.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0029_remove_applications_photo_applications_products.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0030_alter_applications_products.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0030_alter_applications_products.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0031_products_fake_count.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0031_products_fake_count.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0032_alter_products_count.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0032_alter_products_count.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0033_remove_applications_products_applications_products.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0033_remove_applications_products_applications_products.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0034_alter_products_count.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0034_alter_products_count.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0035_alter_products_count.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0035_alter_products_count.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/0036_applications_bool_count.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/0036_applications_bool_count.cpython-39.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /aviato/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/aviato/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/db.sqlite3 -------------------------------------------------------------------------------- /images/bot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/images/bot1.png -------------------------------------------------------------------------------- /images/bot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/images/bot2.png -------------------------------------------------------------------------------- /images/server1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/images/server1.png -------------------------------------------------------------------------------- /media/documents/5285375327_2174.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/media/documents/5285375327_2174.pdf -------------------------------------------------------------------------------- /media/documents/5285375327_2179.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/media/documents/5285375327_2179.pdf -------------------------------------------------------------------------------- /media/documents/5285375327_2943.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/media/documents/5285375327_2943.pdf -------------------------------------------------------------------------------- /media/documents/5285375327_3658.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/media/documents/5285375327_3658.pdf -------------------------------------------------------------------------------- /media/images/2022/08/11/Что-такое-фото.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/media/images/2022/08/11/Что-такое-фото.jpeg -------------------------------------------------------------------------------- /media/users/axarudxazoqyotofkayr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/media/users/axarudxazoqyotofkayr.jpg -------------------------------------------------------------------------------- /media/users/bndyojnbwuupkepgardl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/media/users/bndyojnbwuupkepgardl.jpg -------------------------------------------------------------------------------- /media/users/bqvwwnrzrdewnzllgrka.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/media/users/bqvwwnrzrdewnzllgrka.jpg -------------------------------------------------------------------------------- /media/users/egduvuonxgkpvyaepqix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/media/users/egduvuonxgkpvyaepqix.jpg -------------------------------------------------------------------------------- /media/users/kalregjrpzpslghmtife.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/media/users/kalregjrpzpslghmtife.jpg -------------------------------------------------------------------------------- /media/users/kebzfrotymoukfgdxosm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/media/users/kebzfrotymoukfgdxosm.jpg -------------------------------------------------------------------------------- /media/users/qrhfmkavvsssllimmqxm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/media/users/qrhfmkavvsssllimmqxm.jpg -------------------------------------------------------------------------------- /media/users/sqjwiwgdsplvydbqhuac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/media/users/sqjwiwgdsplvydbqhuac.jpg -------------------------------------------------------------------------------- /media/users/tszecxzcuffmppgesnrz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/media/users/tszecxzcuffmppgesnrz.jpg -------------------------------------------------------------------------------- /media/users/vyjeaaqrejyooiljlbau.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/media/users/vyjeaaqrejyooiljlbau.jpg -------------------------------------------------------------------------------- /media/users/xdgvmyjsvmvkzdrnfafb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/media/users/xdgvmyjsvmvkzdrnfafb.jpg -------------------------------------------------------------------------------- /media/users/ydnitdbbbjpwqjgpggfd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/media/users/ydnitdbbbjpwqjgpggfd.jpg -------------------------------------------------------------------------------- /products.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/products.xlsx -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aiogram 2 | django 3 | geopy 4 | fake_useragent 5 | django-grappelli 6 | loguru -------------------------------------------------------------------------------- /scrapping_xlsx.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | def convert_price(price): 4 | convert = "" 5 | def string_numbers_convert(string): 6 | flag = False 7 | for i in string: 8 | if i.isdigit(): 9 | flag = True 10 | return flag 11 | 12 | for string in price.split(" "): 13 | if string_numbers_convert(string=string): 14 | for i in string: 15 | if i == "т" or i.isdigit(): 16 | convert += i.replace("т", "000") 17 | 18 | 19 | return int(str(convert) \ 20 | .replace(".", "") \ 21 | .replace(",", "") \ 22 | .replace(";", "") 23 | ) 24 | 25 | print(convert_price("Итого с доставкой: 56000₽")) -------------------------------------------------------------------------------- /script/__pycache__/functions.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/script/__pycache__/functions.cpython-311.pyc -------------------------------------------------------------------------------- /script/__pycache__/variables.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/script/__pycache__/variables.cpython-311.pyc -------------------------------------------------------------------------------- /script/__pycache__/worker.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/script/__pycache__/worker.cpython-311.pyc -------------------------------------------------------------------------------- /script/credentials.json: -------------------------------------------------------------------------------- 1 | {"installed":{"client_id":"1031061147737-lk37nu81ukbht7he6oe99jn9amf4ritb.apps.googleusercontent.com","project_id":"tests-382619","auth_uri":"https://accounts.google.com/o/oauth2/auth","token_uri":"https://oauth2.googleapis.com/token","auth_provider_x509_cert_url":"https://www.googleapis.com/oauth2/v1/certs","client_secret":"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","redirect_uris":["http://localhost"]}} -------------------------------------------------------------------------------- /script/token.json: -------------------------------------------------------------------------------- 1 | {"token": "ya29.a0AWY7Ckm1kQYyRy_3pRGFQJMKcI7obnLxYQ6SVnjUqt6APF8xalBRd54xTuh73ICKXp4N1979ZUeKbCPxnKAm0YKrZG-cHJn-27chkUzZTcTB5pCcb-SpXeKeYBm0D3kIK6eHJJ2BnKzv-CaE0fiHo1ItMaaDfPnYaCgYKARgSARASFQG1tDrpCjR5-hwfttiKn0ZiA_AlPw0167", "refresh_token": "1//0c0gUWCpfBX79CgYIARAAGAwSNwF-L9IrXfrTgBfUhLNfQOzDfeVtnV8SwrvKyFMH9m_C7GD2RdP9ObTWLKBH4Td9H5YtjeAlBws", "token_uri": "https://oauth2.googleapis.com/token", "client_id": "1031061147737-lk37nu81ukbht7he6oe99jn9amf4ritb.apps.googleusercontent.com", "client_secret": "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", "scopes": ["https://www.googleapis.com/auth/spreadsheets"], "expiry": "2023-05-03T19:49:06.753109Z"} -------------------------------------------------------------------------------- /script/variables.py: -------------------------------------------------------------------------------- 1 | SCOPES = ['https://www.googleapis.com/auth/spreadsheets'] 2 | SAMPLE_SPREADSHEET_ID = '1LkNP8mSz3cyOCOF-JnW24YMsjXu_fEIG3nlmm54Bnq8' 3 | SPREADSHEETS_ID = { 4 | "Заявки": "!A2:T", 5 | "Не отпр": "!A2:T", 6 | "Ждут отпр.": "!A2:T", 7 | "Отпр. ДСП": "!A2:T", 8 | } 9 | 10 | COLUMN_ID = { 11 | "A": 0, # Дата 12 | "B": 1, # ДСП 13 | "C": 2, # Город 14 | "D": 3, # Товар 15 | "E": 4, # Телефон 16 | "F": 5, # Цена 17 | "G": 6, # 18 | "H": 7, # Статус 19 | "I": 8, # У кого 20 | "J": 9, # В дороге 21 | "K": 10, # 22 | "L": 11, # 23 | "M": 12, # 24 | "O": 14, # Номер заказа 25 | } 26 | -------------------------------------------------------------------------------- /staticfiles/admin/css/dashboard.css: -------------------------------------------------------------------------------- 1 | /* DASHBOARD */ 2 | 3 | .dashboard .module table th { 4 | width: 100%; 5 | } 6 | 7 | .dashboard .module table td { 8 | white-space: nowrap; 9 | } 10 | 11 | .dashboard .module table td a { 12 | display: block; 13 | padding-right: .6em; 14 | } 15 | 16 | /* RECENT ACTIONS MODULE */ 17 | 18 | .module ul.actionlist { 19 | margin-left: 0; 20 | } 21 | 22 | ul.actionlist li { 23 | list-style-type: none; 24 | overflow: hidden; 25 | text-overflow: ellipsis; 26 | } 27 | -------------------------------------------------------------------------------- /staticfiles/admin/css/fonts.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Roboto'; 3 | src: url('../fonts/Roboto-Bold-webfont.woff'); 4 | font-weight: 700; 5 | font-style: normal; 6 | } 7 | 8 | @font-face { 9 | font-family: 'Roboto'; 10 | src: url('../fonts/Roboto-Regular-webfont.woff'); 11 | font-weight: 400; 12 | font-style: normal; 13 | } 14 | 15 | @font-face { 16 | font-family: 'Roboto'; 17 | src: url('../fonts/Roboto-Light-webfont.woff'); 18 | font-weight: 300; 19 | font-style: normal; 20 | } 21 | -------------------------------------------------------------------------------- /staticfiles/admin/fonts/README.txt: -------------------------------------------------------------------------------- 1 | Roboto webfont source: https://www.google.com/fonts/specimen/Roboto 2 | WOFF files extracted using https://github.com/majodev/google-webfonts-helper 3 | Weights used in this project: Light (300), Regular (400), Bold (700) 4 | -------------------------------------------------------------------------------- /staticfiles/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /staticfiles/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /staticfiles/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /staticfiles/admin/img/README.txt: -------------------------------------------------------------------------------- 1 | All icons are taken from Font Awesome (http://fontawesome.io/) project. 2 | The Font Awesome font is licensed under the SIL OFL 1.1: 3 | - https://scripts.sil.org/OFL 4 | 5 | SVG icons source: https://github.com/encharm/Font-Awesome-SVG-PNG 6 | Font-Awesome-SVG-PNG is licensed under the MIT license (see file license 7 | in current folder). 8 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-alert.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-clock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-viewlink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/js/admin/DateTimeShortcuts.js: -------------------------------------------------------------------------------- 1 | // dropped 2 | // not used in grappelli 3 | // kept this file to prevent 404 -------------------------------------------------------------------------------- /staticfiles/admin/js/change_form.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | { 3 | const inputTags = ['BUTTON', 'INPUT', 'SELECT', 'TEXTAREA']; 4 | const modelName = document.getElementById('django-admin-form-add-constants').dataset.modelName; 5 | if (modelName) { 6 | const form = document.getElementById(modelName + '_form'); 7 | for (const element of form.elements) { 8 | // HTMLElement.offsetParent returns null when the element is not 9 | // rendered. 10 | if (inputTags.includes(element.tagName) && !element.disabled && element.offsetParent) { 11 | element.focus(); 12 | break; 13 | } 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /staticfiles/admin/js/jquery.init.js: -------------------------------------------------------------------------------- 1 | /*global jQuery:false*/ 2 | 'use strict'; 3 | /* Puts the included jQuery into our own namespace using noConflict and passing 4 | * it 'true'. This ensures that the included jQuery doesn't pollute the global 5 | * namespace (i.e. this preserves pre-existing values for both window.$ and 6 | * window.jQuery). 7 | */ 8 | window.django = {jQuery: jQuery.noConflict(true)}; 9 | -------------------------------------------------------------------------------- /staticfiles/admin/js/popup_response.js: -------------------------------------------------------------------------------- 1 | /*global opener */ 2 | 'use strict'; 3 | { 4 | const initData = JSON.parse(document.getElementById('django-admin-popup-response-constants').dataset.popupResponse); 5 | switch(initData.action) { 6 | case 'change': 7 | opener.dismissChangeRelatedObjectPopup(window, initData.value, initData.obj, initData.new_value); 8 | break; 9 | case 'delete': 10 | opener.dismissDeleteRelatedObjectPopup(window, initData.value); 11 | break; 12 | default: 13 | opener.dismissAddRelatedObjectPopup(window, initData.value, initData.obj); 14 | break; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /staticfiles/admin/js/prepopulate_init.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | { 3 | const $ = django.jQuery; 4 | const fields = $('#django-admin-prepopulated-fields-constants').data('prepopulatedFields'); 5 | $.each(fields, function(index, field) { 6 | $('.empty-form .form-row .field-' + field.name + ', .empty-form.form-row .field-' + field.name).addClass('prepopulated_field'); 7 | $(field.id).data('dependency_list', field.dependency_list).prepopulate( 8 | field.dependency_ids, field.maxLength, field.allowUnicode 9 | ); 10 | }); 11 | } 12 | -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ar.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/ar",[],function(){return{errorLoading:function(){return"لا يمكن تحميل النتائج"},inputTooLong:function(n){return"الرجاء حذف "+(n.input.length-n.maximum)+" عناصر"},inputTooShort:function(n){return"الرجاء إضافة "+(n.minimum-n.input.length)+" عناصر"},loadingMore:function(){return"جاري تحميل نتائج إضافية..."},maximumSelected:function(n){return"تستطيع إختيار "+n.maximum+" بنود فقط"},noResults:function(){return"لم يتم العثور على أي نتائج"},searching:function(){return"جاري البحث…"},removeAllItems:function(){return"قم بإزالة كل العناصر"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/az.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/az",[],function(){return{inputTooLong:function(n){return n.input.length-n.maximum+" simvol silin"},inputTooShort:function(n){return n.minimum-n.input.length+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(n){return"Sadəcə "+n.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"},removeAllItems:function(){return"Bütün elementləri sil"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/id.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/id",[],function(){return{errorLoading:function(){return"Data tidak boleh diambil."},inputTooLong:function(n){return"Hapuskan "+(n.input.length-n.maximum)+" huruf"},inputTooShort:function(n){return"Masukkan "+(n.minimum-n.input.length)+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(n){return"Anda hanya dapat memilih "+n.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"},removeAllItems:function(){return"Hapus semua item"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ja.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/ja",[],function(){return{errorLoading:function(){return"結果が読み込まれませんでした"},inputTooLong:function(n){return n.input.length-n.maximum+" 文字を削除してください"},inputTooShort:function(n){return"少なくとも "+(n.minimum-n.input.length)+" 文字を入力してください"},loadingMore:function(){return"読み込み中…"},maximumSelected:function(n){return n.maximum+" 件しか選択できません"},noResults:function(){return"対象が見つかりません"},searching:function(){return"検索しています…"},removeAllItems:function(){return"すべてのアイテムを削除"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ko.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(n){return"너무 깁니다. "+(n.input.length-n.maximum)+" 글자 지워주세요."},inputTooShort:function(n){return"너무 짧습니다. "+(n.minimum-n.input.length)+" 글자 더 입력해주세요."},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(n){return"최대 "+n.maximum+"개까지만 선택 가능합니다."},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"},removeAllItems:function(){return"모든 항목 삭제"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/th.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/th",[],function(){return{errorLoading:function(){return"ไม่สามารถค้นข้อมูลได้"},inputTooLong:function(n){return"โปรดลบออก "+(n.input.length-n.maximum)+" ตัวอักษร"},inputTooShort:function(n){return"โปรดพิมพ์เพิ่มอีก "+(n.minimum-n.input.length)+" ตัวอักษร"},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(n){return"คุณสามารถเลือกได้ไม่เกิน "+n.maximum+" รายการ"},noResults:function(){return"ไม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"},removeAllItems:function(){return"ลบรายการทั้งหมด"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/tk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;e.define("select2/i18n/tk",[],function(){return{errorLoading:function(){return"Netije ýüklenmedi."},inputTooLong:function(e){return e.input.length-e.maximum+" harp bozuň."},inputTooShort:function(e){return"Ýene-de iň az "+(e.minimum-e.input.length)+" harp ýazyň."},loadingMore:function(){return"Köpräk netije görkezilýär…"},maximumSelected:function(e){return"Diňe "+e.maximum+" sanysyny saýlaň."},noResults:function(){return"Netije tapylmady."},searching:function(){return"Gözlenýär…"},removeAllItems:function(){return"Remove all items"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/tr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/tr",[],function(){return{errorLoading:function(){return"Sonuç yüklenemedi"},inputTooLong:function(n){return n.input.length-n.maximum+" karakter daha girmelisiniz"},inputTooShort:function(n){return"En az "+(n.minimum-n.input.length)+" karakter daha girmelisiniz"},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(n){return"Sadece "+n.maximum+" seçim yapabilirsiniz"},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"},removeAllItems:function(){return"Tüm öğeleri kaldır"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/vi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/vi",[],function(){return{inputTooLong:function(n){return"Vui lòng xóa bớt "+(n.input.length-n.maximum)+" ký tự"},inputTooShort:function(n){return"Vui lòng nhập thêm từ "+(n.minimum-n.input.length)+" ký tự trở lên"},loadingMore:function(){return"Đang lấy thêm kết quả…"},maximumSelected:function(n){return"Chỉ có thể chọn được "+n.maximum+" lựa chọn"},noResults:function(){return"Không tìm thấy kết quả"},searching:function(){return"Đang tìm…"},removeAllItems:function(){return"Xóa tất cả các mục"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(n){return"请删除"+(n.input.length-n.maximum)+"个字符"},inputTooShort:function(n){return"请再输入至少"+(n.minimum-n.input.length)+"个字符"},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(n){return"最多只能选择"+n.maximum+"个项目"},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"},removeAllItems:function(){return"删除所有项目"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(n){return"請刪掉"+(n.input.length-n.maximum)+"個字元"},inputTooShort:function(n){return"請再輸入"+(n.minimum-n.input.length)+"個字元"},loadingMore:function(){return"載入中…"},maximumSelected:function(n){return"你只能選擇最多"+n.maximum+"項"},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"},removeAllItems:function(){return"刪除所有項目"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/grappelli/images/backgrounds/changelist-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/backgrounds/changelist-results.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/backgrounds/loading-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/backgrounds/loading-small.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/images/backgrounds/messagelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/backgrounds/messagelist.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/backgrounds/nav-grabber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/backgrounds/nav-grabber.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/images/backgrounds/ui-sortable-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/backgrounds/ui-sortable-placeholder.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-s79f97b581c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-s79f97b581c.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small-sc29b5b842f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small-sc29b5b842f.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/add-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/add-link.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/add-link_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/add-link_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/autocomplete-multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/autocomplete-multiple.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/autocomplete-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/autocomplete-single.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/change-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/change-link.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/change-link_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/change-link_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/delete-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/delete-link.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/filter-choice-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/filter-choice-selected.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/link-external-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/link-external-rtl.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/link-external-rtl_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/link-external-rtl_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/link-external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/link-external.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/link-external_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/link-external_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/link-internal-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/link-internal-rtl.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/link-internal-rtl_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/link-internal-rtl_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/link-internal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/link-internal.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/link-internal_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/link-internal_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/sort-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/sort-remove.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/tools-related-add-handler-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/tools-related-add-handler-disabled.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/tools-related-add-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/tools-related-add-handler.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/tools-related-add-handler_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/tools-related-add-handler_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/tools-related-edit-handler-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/tools-related-edit-handler-disabled.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/tools-related-edit-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/tools-related-edit-handler.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/tools-related-edit-handler_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/tools-related-edit-handler_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/tools-related-remove-handler-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/tools-related-remove-handler-disabled.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/tools-related-remove-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/tools-related-remove-handler.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons-small/tools-related-remove-handler_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons-small/tools-related-remove-handler_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/add-another.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/add-another.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/add-another_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/add-another_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/back-link-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/back-link-rtl.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/back-link-rtl_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/back-link-rtl_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/back-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/back-link.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/back-link_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/back-link_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/breadcrumbs-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/breadcrumbs-rtl.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/breadcrumbs-rtl_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/breadcrumbs-rtl_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/breadcrumbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/breadcrumbs.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/breadcrumbs_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/breadcrumbs_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/date-hierarchy-back-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/date-hierarchy-back-rtl.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/date-hierarchy-back-rtl_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/date-hierarchy-back-rtl_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/date-hierarchy-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/date-hierarchy-back.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/date-hierarchy-back_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/date-hierarchy-back_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/datepicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/datepicker.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/datepicker_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/datepicker_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/datetime-now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/datetime-now.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/datetime-now_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/datetime-now_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/form-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/form-select.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/link-internal-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/link-internal-rtl.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/link-internal-rtl_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/link-internal-rtl_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/object-tools-add-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/object-tools-add-link.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/object-tools-viewsite-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/object-tools-viewsite-link.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/pulldown-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/pulldown-handler.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/pulldown-handler_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/pulldown-handler_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/pulldown-handler_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/pulldown-handler_selected.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/related-lookup-m2m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/related-lookup-m2m.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/related-lookup-m2m_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/related-lookup-m2m_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/related-lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/related-lookup.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/related-lookup_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/related-lookup_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/related-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/related-remove.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/related-remove_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/related-remove_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/searchbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/searchbox.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/selector-add-m2m-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/selector-add-m2m-horizontal.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/selector-add-m2m-horizontal_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/selector-add-m2m-horizontal_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/selector-add-m2m-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/selector-add-m2m-vertical.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/selector-add-m2m-vertical_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/selector-add-m2m-vertical_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/selector-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/selector-filter.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/selector-remove-m2m-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/selector-remove-m2m-horizontal.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/selector-remove-m2m-horizontal_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/selector-remove-m2m-horizontal_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/selector-remove-m2m-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/selector-remove-m2m-vertical.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/selector-remove-m2m-vertical_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/selector-remove-m2m-vertical_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/sort-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/sort-remove.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/sort-remove_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/sort-remove_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/sorted-ascending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/sorted-ascending.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/sorted-descending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/sorted-descending.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/status-no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/status-no.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/status-unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/status-unknown.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/status-yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/status-yes.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/th-ascending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/th-ascending.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/th-descending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/th-descending.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/timepicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/timepicker.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/timepicker_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/timepicker_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-add-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-add-handler.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-add-handler_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-add-handler_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-arrow-down-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-arrow-down-handler.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-arrow-down-handler_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-arrow-down-handler_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-arrow-up-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-arrow-up-handler.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-arrow-up-handler_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-arrow-up-handler_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-close-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-close-handler.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-close-handler_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-close-handler_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-delete-handler-predelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-delete-handler-predelete.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-delete-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-delete-handler.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-delete-handler_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-delete-handler_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-drag-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-drag-handler.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-drag-handler_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-drag-handler_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-edit-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-edit-handler.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-edit-handler_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-edit-handler_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-open-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-open-handler.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-open-handler_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-open-handler_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-remove-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-remove-handler.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-remove-handler_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-remove-handler_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-trash-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-trash-handler.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-trash-handler_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-trash-handler_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-trash-list-toggle-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-trash-list-toggle-handler.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-trash-list-toggle-handler_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-trash-list-toggle-handler_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-viewsite-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-viewsite-link.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/tools-viewsite-link_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/tools-viewsite-link_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/ui-datepicker-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/ui-datepicker-next.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/ui-datepicker-next_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/ui-datepicker-next_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/ui-datepicker-prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/ui-datepicker-prev.png -------------------------------------------------------------------------------- /staticfiles/grappelli/images/icons/ui-datepicker-prev_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/images/icons/ui-datepicker-prev_hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/img/admin/arrow-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/img/admin/arrow-down.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/img/admin/arrow-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/img/admin/arrow-up.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/jquery/ui/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/jquery/ui/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /staticfiles/grappelli/jquery/ui/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/jquery/ui/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /staticfiles/grappelli/jquery/ui/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/jquery/ui/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /staticfiles/grappelli/jquery/ui/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/jquery/ui/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /staticfiles/grappelli/jquery/ui/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/jquery/ui/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /staticfiles/grappelli/jquery/ui/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/jquery/ui/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /staticfiles/grappelli/stylesheets/mueller/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/stylesheets/mueller/screen.css -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/examples/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TinyMCE examples 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/examples/lists/image_list.js: -------------------------------------------------------------------------------- 1 | // This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system. 2 | // There images will be displayed as a dropdown in all image dialogs if the "external_link_image_url" 3 | // option is defined in TinyMCE init. 4 | 5 | var tinyMCEImageList = new Array( 6 | // Name, URL 7 | ["Logo 1", "media/logo.jpg"], 8 | ["Logo 2 Over", "media/logo_over.jpg"] 9 | ); 10 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/examples/lists/link_list.js: -------------------------------------------------------------------------------- 1 | // This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system. 2 | // There links will be displayed as a dropdown in all link dialogs if the "external_link_list_url" 3 | // option is defined in TinyMCE init. 4 | 5 | var tinyMCELinkList = new Array( 6 | // Name, URL 7 | ["Moxiecode", "http://www.moxiecode.com"], 8 | ["Freshmeat", "http://www.freshmeat.com"], 9 | ["Sourceforge", "http://www.sourceforge.com"] 10 | ); 11 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/examples/lists/media_list.js: -------------------------------------------------------------------------------- 1 | // This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system. 2 | // There flash movies will be displayed as a dropdown in all media dialog if the "media_external_list_url" 3 | // option is defined in TinyMCE init. 4 | 5 | var tinyMCEMediaList = [ 6 | // Name, URL 7 | ["Some Flash", "media/sample.swf"], 8 | ["Some Quicktime", "media/sample.mov"], 9 | ["Some AVI", "media/sample.avi"], 10 | ["Some RealMedia", "media/sample.rm"], 11 | ["Some Shockwave", "media/sample.dcr"], 12 | ["Some Video", "media/sample.mp4"], 13 | ["Some FLV", "media/sample.flv"] 14 | ]; -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/examples/lists/template_list.js: -------------------------------------------------------------------------------- 1 | // This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system. 2 | // There templates will be displayed as a dropdown in all media dialog if the "template_external_list_url" 3 | // option is defined in TinyMCE init. 4 | 5 | var tinyMCETemplateList = [ 6 | // Name, URL, Description 7 | ["Simple snippet", "templates/snippet1.htm", "Simple HTML snippet."], 8 | ["Layout", "templates/layout1.htm", "HTML Layout."] 9 | ]; -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/examples/media/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/examples/media/logo.jpg -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/examples/media/logo_over.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/examples/media/logo_over.jpg -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/examples/media/sample.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/examples/media/sample.avi -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/examples/media/sample.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/examples/media/sample.dcr -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/examples/media/sample.flv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/examples/media/sample.flv -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/examples/media/sample.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/examples/media/sample.mov -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/examples/media/sample.ram: -------------------------------------------------------------------------------- 1 | http://streaming.uga.edu/samples/ayp_lan.rm -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/examples/media/sample.rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/examples/media/sample.rm -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/examples/media/sample.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/examples/media/sample.swf -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/examples/menu.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Menu 5 | 8 | 9 | 10 |

Examples

11 | Full featured 12 | Simple theme 13 | Skin support 14 | Word processor 15 | Custom formats 16 | Accessibility Options 17 | 18 | 19 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/examples/templates/layout1.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
Column 1Column 2
Username: {$username}Staffid: {$staffid}
16 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/examples/templates/snippet1.htm: -------------------------------------------------------------------------------- 1 | This is just some code. 2 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/css/advhr.css: -------------------------------------------------------------------------------- 1 | input.radio {border:1px none #000; background:transparent; vertical-align:middle;} 2 | .panel_wrapper div.current {height:80px;} 3 | #width {width:50px; vertical-align:middle;} 4 | #width2 {width:50px; vertical-align:middle;} 5 | #size {width:100px;} 6 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.advhr_dlg',{size:"Height",noshade:"No Shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/css/advimage.css: -------------------------------------------------------------------------------- 1 | #src_list, #over_list, #out_list {width:280px;} 2 | .mceActionPanel {margin-top:7px;} 3 | .alignPreview {border:1px solid #000; width:140px; height:140px; overflow:hidden; padding:5px;} 4 | .checkbox {border:0;} 5 | .panel_wrapper div.current {height:305px;} 6 | #prev {margin:0; border:1px solid #000; width:428px; height:150px; overflow:auto;} 7 | #align, #classlist {width:150px;} 8 | #width, #height {vertical-align:middle; width:50px; text-align:center;} 9 | #vspace, #hspace, #border {vertical-align:middle; width:30px; text-align:center;} 10 | #class_list {width:180px;} 11 | #constrain, #onmousemovecheck {width:auto;} 12 | #id, #dir, #lang, #usemap, #longdesc {width:200px;} 13 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/img/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/img/sample.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/css/advimage.css: -------------------------------------------------------------------------------- 1 | #src_list, #over_list, #out_list {width:280px;} 2 | .mceActionPanel {margin-top:7px;} 3 | .alignPreview {border:1px solid #000; width:140px; height:140px; overflow:hidden; padding:5px;} 4 | .checkbox {border:0;} 5 | .panel_wrapper div.current {height:305px;} 6 | #prev {margin:0; border:1px solid #000; width:428px; height:150px; overflow:auto;} 7 | #align, #classlist {width:150px;} 8 | #width, #height {vertical-align:middle; width:50px; text-align:center;} 9 | #vspace, #hspace, #border {vertical-align:middle; width:30px; text-align:center;} 10 | #class_list {width:180px;} 11 | input {width: 280px;} 12 | #constrain, #onmousemovecheck {width:auto;} 13 | #id, #dir, #lang, #usemap, #longdesc {width:200px;} 14 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/img/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/img/sample.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/css/advlink.css: -------------------------------------------------------------------------------- 1 | .mceLinkList, .mceAnchorList, #targetlist {width:280px;} 2 | .mceActionPanel {margin-top:7px;} 3 | .panel_wrapper div.current {height:320px;} 4 | #classlist, #title, #href {width:280px;} 5 | #popupurl, #popupname {width:200px;} 6 | #popupwidth, #popupheight, #popupleft, #popuptop {width:30px;vertical-align:middle;text-align:center;} 7 | #id, #style, #classes, #target, #dir, #hreflang, #lang, #charset, #type, #rel, #rev, #tabindex, #accesskey {width:200px;} 8 | #events_panel input {width:200px;} 9 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/css/advlink.css: -------------------------------------------------------------------------------- 1 | .mceLinkList, .mceAnchorList, #targetlist {width:280px;} 2 | .mceActionPanel {margin-top:7px;} 3 | .panel_wrapper div.current {height:320px;} 4 | #classlist, #title, #href {width:280px;} 5 | #popupurl, #popupname {width:200px;} 6 | #popupwidth, #popupheight, #popupleft, #popuptop {width:30px;vertical-align:middle;text-align:center;} 7 | #id, #style, #classes, #target, #dir, #hreflang, #lang, #charset, #type, #rel, #rev, #tabindex, #accesskey {width:200px;} 8 | #events_panel input {width:200px;} 9 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(a){a.create("tinymce.plugins.EmotionsPlugin",{init:function(b,c){b.addCommand("mceEmotion",function(){b.windowManager.open({file:c+"/emotions.htm",width:250+parseInt(b.getLang("emotions.delta_width",0)),height:160+parseInt(b.getLang("emotions.delta_height",0)),inline:1},{plugin_url:c})});b.addButton("emotions",{title:"emotions.emotions_desc",cmd:"mceEmotion"})},getInfo:function(){return{longname:"Emotions",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/emotions",version:a.majorVersion+"."+a.minorVersion}}});a.PluginManager.add("emotions",a.plugins.EmotionsPlugin)})(tinymce); -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-yell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-yell.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.emotions_dlg',{cry:"Cry",cool:"Cool",desc:"Emotions",title:"Insert Emotion",usage:"Use left and right arrows to navigate.",yell:"Yell",wink:"Wink",undecided:"Undecided","tongue_out":"Tongue Out",surprised:"Surprised",smile:"Smile",sealed:"Sealed","money_mouth":"Money Mouth",laughing:"Laughing",kiss:"Kiss",innocent:"Innocent",frown:"Frown","foot_in_mouth":"Foot in Mouth",embarassed:"Embarassed"}); 2 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/example/js/dialog.js: -------------------------------------------------------------------------------- 1 | tinyMCEPopup.requireLangPack(); 2 | 3 | var ExampleDialog = { 4 | init : function() { 5 | var f = document.forms[0]; 6 | 7 | // Get the selected contents as text and place it in the input 8 | f.someval.value = tinyMCEPopup.editor.selection.getContent({format : 'text'}); 9 | f.somearg.value = tinyMCEPopup.getWindowArg('some_custom_arg'); 10 | }, 11 | 12 | insert : function() { 13 | // Insert the contents from the input into the document 14 | tinyMCEPopup.editor.execCommand('mceInsertContent', false, document.forms[0].someval.value); 15 | tinyMCEPopup.close(); 16 | } 17 | }; 18 | 19 | tinyMCEPopup.onInit.add(ExampleDialog.init, ExampleDialog); 20 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/example/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.example',{ 2 | desc : 'This is just a template button' 3 | }); 4 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/example/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.example_dlg',{ 2 | title : 'This is just a example title' 3 | }); 4 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/example_dependency/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.ExampleDependencyPlugin",{init:function(a,b){},getInfo:function(){return{longname:"Example Dependency plugin",author:"Some author",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/example_dependency",version:"1.0"}}});tinymce.PluginManager.add("example_dependency",tinymce.plugins.ExampleDependencyPlugin,["example"])})(); -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/img/show_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/img/show_advanced.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/img/visualchars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/img/visualchars.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/cs.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n("cs.grappelli",{ 2 | grappelli_adv_desc:"Zobrazit/Skrýt pokročilé možnosti", 3 | grappelli_documentstructure_desc:"Zobrazit/Skrýt strukturu dokumentu", 4 | }); 5 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/de.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n("de.grappelli",{ 2 | grappelli_adv_desc:"Erweitertes Menü anzeigen/verbergen", 3 | grappelli_documentstructure_desc:"Dokumentenstruktur anzeigen/verbergen", 4 | }); 5 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n("en.grappelli",{ 2 | grappelli_adv_desc:"Show/Hide Advanced Menu", 3 | grappelli_documentstructure_desc:"Show/Hide Document Structure", 4 | }); -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/fr.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n("fr.grappelli",{ 2 | grappelli_adv_desc:"Basculer le menu avancé", 3 | grappelli_documentstructure_desc:"Basculé la structure de document", 4 | }); 5 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/pl.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n("pl.grappelli",{ 2 | grappelli_adv_desc:"Pokaż/Ukryj zaawansowane menu", 3 | grappelli_documentstructure_desc:"Pokaż/Ukryj strukturę dokumentu" 4 | }); 5 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/ru.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n("ru.grappelli",{ 2 | grappelli_adv_desc:"\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c\u002f\u0421\u043a\u0440\u044b\u0442\u044c\u0020\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435\u0020\u041c\u0435\u043d\u044e", 3 | grappelli_documentstructure_desc:"\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c\u002f\u0421\u043a\u0440\u044b\u0442\u044c\u0020\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0443\u0020\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430", 4 | }); -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/fr.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n("fr.grappelli_contextmenu",{ 2 | grappelli_contextmenu_insertpbefore_desc:"Insérer Paragraph AVANT la sélection", 3 | grappelli_contextmenu_insertpafter_desc:"Insérer Paragraph APRÈS la sélection", 4 | grappelli_contextmenu_insertpbeforeroot_desc:"Insérer Paragraph AVANT la racine de la sélection", 5 | grappelli_contextmenu_insertpafterroot_desc:"Insérer Paragraph APRÈS la racine de la sélection", 6 | grappelli_contextmenu_delete_desc:"Supprimer la sélection", 7 | grappelli_contextmenu_deleteroot_desc:"Supprimer la racine de la sélection", 8 | grappelli_contextmenu_moveup_desc:"Monter la sélection", 9 | grappelli_contextmenu_moveuproot_desc:"Monter la racine de la sélection", 10 | }); 11 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/media/moxieplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/media/moxieplayer.swf -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/moxieplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/moxieplayer.swf -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.paste_dlg',{"word_title":"Use Ctrl+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep Linebreaks","text_title":"Use Ctrl+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.paste_dlg',{"word_title":"Use Ctrl+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep Linebreaks","text_title":"Use Ctrl+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 10 | {#preview.preview_desc} 11 | 12 | 13 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.Print",{init:function(a,b){a.addCommand("mcePrint",function(){a.getWin().print()});a.addButton("print",{title:"print.print_desc",cmd:"mcePrint"})},getInfo:function(){return{longname:"Print",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/print",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("print",tinymce.plugins.Print)})(); -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/searchreplace.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper {height:85px;} 2 | .panel_wrapper div.current {height:85px;} 3 | 4 | /* IE */ 5 | * html .panel_wrapper {height:100px;} 6 | * html .panel_wrapper div.current {height:100px;} 7 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.searchreplace_dlg',{findwhat:"Find What",replacewith:"Replace with",direction:"Direction",up:"Up",down:"Down",mcase:"Match Case",findnext:"Find Next",allreplaced:"All occurrences of the search string were replaced.","searchnext_desc":"Find Again",notfound:"The search has been completed. The search string could not be found.","search_title":"Find","replace_title":"Find/Replace",replaceall:"Replace All",replace:"Replace"}); -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/css/searchreplace.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper {height:85px;} 2 | .panel_wrapper div.current {height:85px;} 3 | 4 | /* IE */ 5 | * html .panel_wrapper {height:100px;} 6 | * html .panel_wrapper div.current {height:100px;} 7 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.searchreplace_dlg',{findwhat:"Find What",replacewith:"Replace with",direction:"Direction",up:"Up",down:"Down",mcase:"Match Case",findnext:"Find Next",allreplaced:"All occurrences of the search string were replaced.","searchnext_desc":"Find Again",notfound:"The search has been completed. The search string could not be found.","search_title":"Find","replace_title":"Find/Replace",replaceall:"Replace All",replace:"Replace"}); -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/css/content.css: -------------------------------------------------------------------------------- 1 | .mceItemHiddenSpellWord {background:url(../img/wline.gif) repeat-x bottom left; cursor:default;} 2 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/img/wline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/img/wline.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/table/css/cell.css: -------------------------------------------------------------------------------- 1 | /* CSS file for cell dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 200px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #action { 12 | margin-bottom: 3px; 13 | } 14 | 15 | #class { 16 | width: 150px; 17 | } -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/table/css/row.css: -------------------------------------------------------------------------------- 1 | /* CSS file for row dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 200px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #action { 12 | margin-bottom: 3px; 13 | } 14 | 15 | #rowtype,#align,#valign,#class,#height { 16 | width: 150px; 17 | } 18 | 19 | #height { 20 | width: 50px; 21 | } 22 | 23 | .col2 { 24 | padding-left: 20px; 25 | } 26 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/table/css/table.css: -------------------------------------------------------------------------------- 1 | /* CSS file for table dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 245px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #class { 12 | width: 150px; 13 | } 14 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/table/js/merge_cells.js: -------------------------------------------------------------------------------- 1 | tinyMCEPopup.requireLangPack(); 2 | 3 | var MergeCellsDialog = { 4 | init : function() { 5 | var f = document.forms[0]; 6 | 7 | f.numcols.value = tinyMCEPopup.getWindowArg('cols', 1); 8 | f.numrows.value = tinyMCEPopup.getWindowArg('rows', 1); 9 | }, 10 | 11 | merge : function() { 12 | var func, f = document.forms[0]; 13 | 14 | tinyMCEPopup.restoreSelection(); 15 | 16 | func = tinyMCEPopup.getWindowArg('onaction'); 17 | 18 | func({ 19 | cols : f.numcols.value, 20 | rows : f.numrows.value 21 | }); 22 | 23 | tinyMCEPopup.close(); 24 | } 25 | }; 26 | 27 | tinyMCEPopup.onInit.add(MergeCellsDialog.init, MergeCellsDialog); 28 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/template/blank.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | blank_page 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/template/css/template.css: -------------------------------------------------------------------------------- 1 | #frmbody { 2 | padding: 10px; 3 | background-color: #FFF; 4 | border: 1px solid #CCC; 5 | } 6 | 7 | .frmRow { 8 | margin-bottom: 10px; 9 | } 10 | 11 | #templatesrc { 12 | border: none; 13 | width: 320px; 14 | height: 240px; 15 | } 16 | 17 | .title { 18 | padding-bottom: 5px; 19 | } 20 | 21 | .mceActionPanel { 22 | padding-top: 5px; 23 | } 24 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/template/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.template_dlg',{title:"Templates",label:"Template","desc_label":"Description",desc:"Insert Predefined Template Content",select:"Select a Template",preview:"Preview",warning:"Warning: Updating a template with a different one may cause data loss.","mdate_format":"%Y-%m-%d %H:%M:%S","cdate_format":"%Y-%m-%d %H:%M:%S","months_long":"January,February,March,April,May,June,July,August,September,October,November,December","months_short":"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec","day_long":"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday","day_short":"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"}); -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/blank.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | blank_page 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/css/template.css: -------------------------------------------------------------------------------- 1 | #frmbody { 2 | padding: 10px; 3 | background-color: #FFF; 4 | border: 1px solid #CCC; 5 | } 6 | 7 | .frmRow { 8 | margin-bottom: 10px; 9 | } 10 | 11 | #templatesrc { 12 | border: none; 13 | width: 320px; 14 | height: 240px; 15 | } 16 | 17 | .title { 18 | padding-bottom: 5px; 19 | } 20 | 21 | .mceActionPanel { 22 | padding-top: 5px; 23 | } 24 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.template_dlg',{title:"Templates",label:"Template","desc_label":"Description",desc:"Insert Predefined Template Content",select:"Select a Template",preview:"Preview",warning:"Warning: Updating a template with a different one may cause data loss.","mdate_format":"%Y-%m-%d %H:%M:%S","cdate_format":"%Y-%m-%d %H:%M:%S","months_long":"January,February,March,April,May,June,July,August,September,October,November,December","months_short":"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec","day_long":"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday","day_short":"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"}); -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper div.current { 2 | height: 290px; 3 | } 4 | 5 | #id, #style, #title, #dir, #hreflang, #lang, #classlist, #tabindex, #accesskey { 6 | width: 200px; 7 | } 8 | 9 | #events_panel input { 10 | width: 200px; 11 | } 12 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/popup.css: -------------------------------------------------------------------------------- 1 | input.field, select.field {width:200px;} 2 | input.picker {width:179px; margin-left: 5px;} 3 | input.disabled {border-color:#F2F2F2;} 4 | img.picker {vertical-align:text-bottom; cursor:pointer;} 5 | h1 {padding: 0 0 5px 0;} 6 | .panel_wrapper div.current {height:160px;} 7 | #xhtmlxtrasdel .panel_wrapper div.current, #xhtmlxtrasins .panel_wrapper div.current {height: 230px;} 8 | a.browse span {display:block; width:20px; height:20px; background:url('../../../themes/advanced/img/icons.gif') -140px -20px;} 9 | #datetime {width:180px;} 10 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * abbr.js 3 | * 4 | * Copyright 2009, Moxiecode Systems AB 5 | * Released under LGPL License. 6 | * 7 | * License: http://tinymce.moxiecode.com/license 8 | * Contributing: http://tinymce.moxiecode.com/contributing 9 | */ 10 | 11 | function init() { 12 | SXE.initElementDialog('abbr'); 13 | if (SXE.currentAction == "update") { 14 | SXE.showRemoveButton(); 15 | } 16 | } 17 | 18 | function insertAbbr() { 19 | SXE.insertElement('abbr'); 20 | tinyMCEPopup.close(); 21 | } 22 | 23 | function removeAbbr() { 24 | SXE.removeElement('abbr'); 25 | tinyMCEPopup.close(); 26 | } 27 | 28 | tinyMCEPopup.onInit.add(init); 29 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js: -------------------------------------------------------------------------------- 1 | /** 2 | * acronym.js 3 | * 4 | * Copyright 2009, Moxiecode Systems AB 5 | * Released under LGPL License. 6 | * 7 | * License: http://tinymce.moxiecode.com/license 8 | * Contributing: http://tinymce.moxiecode.com/contributing 9 | */ 10 | 11 | function init() { 12 | SXE.initElementDialog('acronym'); 13 | if (SXE.currentAction == "update") { 14 | SXE.showRemoveButton(); 15 | } 16 | } 17 | 18 | function insertAcronym() { 19 | SXE.insertElement('acronym'); 20 | tinyMCEPopup.close(); 21 | } 22 | 23 | function removeAcronym() { 24 | SXE.removeElement('acronym'); 25 | tinyMCEPopup.close(); 26 | } 27 | 28 | tinyMCEPopup.onInit.add(init); 29 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/cite.js: -------------------------------------------------------------------------------- 1 | /** 2 | * cite.js 3 | * 4 | * Copyright 2009, Moxiecode Systems AB 5 | * Released under LGPL License. 6 | * 7 | * License: http://tinymce.moxiecode.com/license 8 | * Contributing: http://tinymce.moxiecode.com/contributing 9 | */ 10 | 11 | function init() { 12 | SXE.initElementDialog('cite'); 13 | if (SXE.currentAction == "update") { 14 | SXE.showRemoveButton(); 15 | } 16 | } 17 | 18 | function insertCite() { 19 | SXE.insertElement('cite'); 20 | tinyMCEPopup.close(); 21 | } 22 | 23 | function removeCite() { 24 | SXE.removeElement('cite'); 25 | tinyMCEPopup.close(); 26 | } 27 | 28 | tinyMCEPopup.onInit.add(init); 29 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/colorpicker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/colorpicker.jpg -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/flash.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/iframe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/iframe.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/pagebreak.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/quicktime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/quicktime.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/realmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/realmedia.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/shockwave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/shockwave.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/trans.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/video.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/windowsmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/windowsmedia.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/buttons.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/items.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/items.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/progress.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/blockquote.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/bold.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/bullist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/bullist.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/charmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/charmap.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/cleanup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/cleanup.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/code.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/fullscreen.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/image.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/italic.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/justifycenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/justifycenter.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/justifyfull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/justifyfull.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/justifyleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/justifyleft.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/justifyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/justifyright.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/link.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/media.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/numlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/numlist.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/pasteword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/pasteword.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/redo.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/search.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/show_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/show_advanced.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_cell_props.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_cell_props.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_col_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_col_after.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_col_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_col_before.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_delete_col.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_delete_col.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_delete_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_delete_row.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_merge_cells.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_merge_cells.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_row_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_row_after.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_row_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_row_before.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_row_props.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_row_props.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_split_cells.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_split_cells.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/template.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/underline.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/undo.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/unlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/unlink.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/visualchars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/visualchars.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/customized/button_pagebreak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/customized/button_pagebreak.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/customized/pagebreak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/customized/pagebreak.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/icons/icon-fb_show-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/icons/icon-fb_show-hover.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/icons/icon-fb_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/icons/icon-fb_show.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/icons/icon-mceResize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/icons/icon-mceResize.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/menu/icon-mceOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/menu/icon-mceOpen.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/simple/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/simple/img/icons.gif -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/simple/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.simple',{"cleanup_desc":"Cleanup Messy Code","redo_desc":"Redo (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","numlist_desc":"Insert/Remove Numbered List","bullist_desc":"Insert/Remove Bulleted List","striketrough_desc":"Strikethrough","underline_desc":"Underline (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"Bold (Ctrl+B)"}); -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/default/content.css: -------------------------------------------------------------------------------- 1 | body, td, pre { 2 | font-family: Verdana, Arial, Helvetica, sans-serif; 3 | font-size: 10px; 4 | } 5 | 6 | body { 7 | background-color: #FFFFFF; 8 | } 9 | 10 | .mceVisualAid { 11 | border: 1px dashed #BBBBBB; 12 | } 13 | 14 | /* MSIE specific */ 15 | 16 | * html body { 17 | scrollbar-3dlight-color: #F0F0EE; 18 | scrollbar-arrow-color: #676662; 19 | scrollbar-base-color: #F0F0EE; 20 | scrollbar-darkshadow-color: #DDDDDD; 21 | scrollbar-face-color: #E0E0DD; 22 | scrollbar-highlight-color: #F0F0EE; 23 | scrollbar-shadow-color: #F0F0EE; 24 | scrollbar-track-color: #F5F5F5; 25 | } 26 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/content.css: -------------------------------------------------------------------------------- 1 | body, td, pre {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} 2 | 3 | body {background: #FFF;} 4 | .mceVisualAid {border: 1px dashed #BBB;} 5 | 6 | /* IE */ 7 | 8 | * html body { 9 | scrollbar-3dlight-color: #F0F0EE; 10 | scrollbar-arrow-color: #676662; 11 | scrollbar-base-color: #F0F0EE; 12 | scrollbar-darkshadow-color: #DDDDDD; 13 | scrollbar-face-color: #E0E0DD; 14 | scrollbar-highlight-color: #F0F0EE; 15 | scrollbar-shadow-color: #F0F0EE; 16 | scrollbar-track-color: #F5F5F5; 17 | } 18 | -------------------------------------------------------------------------------- /staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/staticfiles/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /statistics/2022-08-28_17-22-04/diff-details.md: -------------------------------------------------------------------------------- 1 | # Diff Details 2 | 3 | Date : 2022-08-28 17:22:04 4 | 5 | Directory c:\\Users\\User\\Desktop\\django-aiogram-bot 6 | 7 | Total : 0 files, 0 codes, 0 comments, 0 blanks, all 0 lines 8 | 9 | [Summary](results.md) / [Details](details.md) / [Diff Summary](diff.md) / Diff Details 10 | 11 | ## Files 12 | | filename | language | code | comment | blank | total | 13 | | :--- | :--- | ---: | ---: | ---: | ---: | 14 | 15 | [Summary](results.md) / [Details](details.md) / [Diff Summary](diff.md) / Diff Details -------------------------------------------------------------------------------- /statistics/2022-08-28_17-22-04/diff.csv: -------------------------------------------------------------------------------- 1 | "filename", "language", "", "comment", "blank", "total" 2 | "Total", "-", , 0, 0, 0 -------------------------------------------------------------------------------- /statistics/2022-08-28_17-22-04/diff.md: -------------------------------------------------------------------------------- 1 | # Diff Summary 2 | 3 | Date : 2022-08-28 17:22:04 4 | 5 | Directory c:\\Users\\User\\Desktop\\django-aiogram-bot 6 | 7 | Total : 0 files, 0 codes, 0 comments, 0 blanks, all 0 lines 8 | 9 | [Summary](results.md) / [Details](details.md) / Diff Summary / [Diff Details](diff-details.md) 10 | 11 | ## Languages 12 | | language | files | code | comment | blank | total | 13 | | :--- | ---: | ---: | ---: | ---: | ---: | 14 | 15 | ## Directories 16 | | path | files | code | comment | blank | total | 17 | | :--- | ---: | ---: | ---: | ---: | ---: | 18 | 19 | [Summary](results.md) / [Details](details.md) / Diff Summary / [Diff Details](diff-details.md) -------------------------------------------------------------------------------- /templates/django/contrib/admin/stats.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | dsadasdsa 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /templates/lending_files/tildacopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makhkets/django-aiogram-bot/ee316c58a29ff69f429403a75bb2a5cded4a5406/templates/lending_files/tildacopy.png --------------------------------------------------------------------------------