├── .github └── workflows │ └── ci_pipeline.yml ├── .gitignore ├── .mailmap ├── .python-version ├── .vscode └── launch.json ├── Dockerfile ├── LICENSE.bsd ├── Makefile ├── README.md ├── assets ├── css │ ├── Galyon-Bold.otf │ ├── Galyon-Italic.otf │ ├── Galyon-Regular.otf │ ├── bootstrap.min.css │ ├── bs-stepper.min.css │ ├── europython-bs-theme.css │ └── europython-customizations.css ├── img │ ├── ep2021-background-online.jpg │ ├── ep2021-favicon.png │ ├── ep2021-icon-logo-small.png │ ├── ep2021-icon-logo.png │ ├── ep2021-logo-white-1024px-alpha.png │ ├── ep2021-logo.png │ ├── ep2021-online-logo.png │ ├── ep2021-snake-wrangler.jpg │ ├── ep2021-social-online-card.jpg │ ├── ep2021-social-online-card.png │ ├── ep2021-white-logo-alpha.png │ ├── ep2022-background-ccd-original.jpg │ ├── ep2022-background-ccd.jpg │ ├── ep2022-conference-venue-from-above.jpg │ ├── ep2022-social-card.jpg │ ├── ep2022-social-card.png │ ├── epslogo.png │ ├── fitted-cut-size-guide.png │ └── straight-cut-size-guide.png └── js │ ├── bootstrap.min.js │ ├── bs-stepper.min.js │ ├── generate_toc_for_cms.js │ ├── jquery-3.2.1.slim.min.js │ ├── popper.min.js │ └── taggit_labels_customised_with_max_number_of_tags.js ├── assopy ├── __init__.py ├── admin.py ├── auth_backends.py ├── dataaccess.py ├── forms.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── update_orders.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180408_2337.py │ ├── 0003_add_exrate_fields_to_invoice_model.py │ ├── 0004_add_order_payment_date.py │ ├── 0005_simplify_invoice_html_field_name.py │ ├── 0006_add_bank_to_payment_options.py │ ├── 0007_add_customer_to_invoice.py │ ├── 0008_remove_user_oauth_info_model.py │ ├── 0009_rename_assopy_user.py │ ├── 0010_add_uuid_to_Order.py │ ├── 0011_updated_vat_settings_for_swiss_vat.py │ ├── 0012_add_type_to_order.py │ ├── 0013_mystery_migrations_maybe_2_to_3_bytes_to_str.py │ ├── 0014_deprecate_paypal_20191124_2308.py │ ├── 0015_remove_refund_models.py │ ├── 0016_null_has_no_effect_on_vat_manytomay_relationship.py │ └── __init__.py ├── models.py ├── stats.py ├── templatetags │ ├── __init__.py │ └── assopy_tags.py ├── urls.py ├── utils.py └── views.py ├── cms_utils ├── __init__.py ├── cms_app.py ├── cms_plugins.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_templatepluginmodel.py │ └── __init__.py ├── models.py ├── processors.py └── templates │ ├── djangocms_markitup │ └── markitup.html │ └── djangocms_template │ └── template_plugin.html ├── common ├── __init__.py ├── decorators.py ├── django_urls.py ├── http.py ├── jsonify.py └── tests │ ├── __init__.py │ └── test_jsonify.py ├── conference ├── __init__.py ├── accounts.py ├── admin.py ├── api.py ├── apps.py ├── cachef.py ├── cart.py ├── cfp.py ├── context_processors.py ├── currencies.py ├── dataaccess.py ├── debug_panel.py ├── decorators.py ├── fares.py ├── forms │ ├── __init__.py │ ├── auth.py │ ├── forms.py │ └── talks.py ├── gravatar.py ├── homepage.py ├── invoicing.py ├── listeners.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── add_invoices_for_zero_amount_orders.py │ │ ├── create_initial_data_for_dev.py │ │ ├── get_conference_speakers.py │ │ ├── make_speaker_profiles_public.py │ │ ├── pull_latest_exrates.py │ │ ├── ranking_of_talks.py │ │ └── upgrade_placeholder_invoices_for_2018.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_talk_domain.py │ ├── 0003_add_domain_level_field.py │ ├── 0004_add_exchangerate_model.py │ ├── 0005_add_captcha_question.py │ ├── 0006_update_talk_model_fields.py │ ├── 0007_remove_special_place.py │ ├── 0008_add_news_model.py │ ├── 0009_add_field_created_by_and_modified_to_talk.py │ ├── 0010_add_gender_and_is_minor_fields.py │ ├── 0011_add_stripepayment_model.py │ ├── 0012_add_vototalk_timestamps.py │ ├── 0013_add_stripe_charge_id.py │ ├── 0014_stripe_charge_default_uuid.py │ ├── 0015_add_talk_url_fields.py │ ├── 0016_mystery_migrations_maybe_2_to_3_bytes_to_str.py │ ├── 0017_retire_more_unused_models.py │ ├── 0018_remove_unused_models.py │ ├── 0019_add_stripe_session_id.py │ ├── 0020_make_gender_field_required.py │ ├── 0021_alter_add_deletion_PROTECT.py │ ├── 0022_alter_sponsorincome_tags.py │ ├── 0023_update_field_descriptions.py │ ├── 0024_add_talk_status_declined.py │ ├── 0025_add_poster_45_type.py │ ├── 0026_auto_20201204_1130.py │ ├── 0027_auto_20201204_1539.py │ ├── 0028_changes_to_conferencetag_and_conferencetaggeditem.py │ ├── 0029_talk_availability.py │ ├── 0030_add_streamset.py │ ├── 0031_update_streamset_help_text.py │ └── __init__.py ├── models.py ├── news.py ├── orders.py ├── payments.py ├── profiles.py ├── schedule.py ├── social_card.py ├── static │ └── conference │ │ ├── images │ │ └── 500.jpg │ │ ├── init.js │ │ ├── jquery-flot │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── API.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── NEWS.md │ │ ├── PLUGINS.md │ │ ├── README.md │ │ ├── component.json │ │ ├── examples │ │ │ ├── ajax │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ └── index.html │ │ │ ├── annotating │ │ │ │ └── index.html │ │ │ ├── axes-interacting │ │ │ │ └── index.html │ │ │ ├── axes-multiple │ │ │ │ └── index.html │ │ │ ├── axes-time-zones │ │ │ │ ├── date.js │ │ │ │ ├── index.html │ │ │ │ └── tz │ │ │ │ │ ├── africa │ │ │ │ │ ├── antarctica │ │ │ │ │ ├── asia │ │ │ │ │ ├── australasia │ │ │ │ │ ├── backward │ │ │ │ │ ├── etcetera │ │ │ │ │ ├── europe │ │ │ │ │ ├── factory │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ ├── leapseconds │ │ │ │ │ ├── northamerica │ │ │ │ │ ├── pacificnew │ │ │ │ │ ├── solar87 │ │ │ │ │ ├── solar88 │ │ │ │ │ ├── solar89 │ │ │ │ │ ├── southamerica │ │ │ │ │ ├── systemv │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ └── zone.tab │ │ │ ├── axes-time │ │ │ │ └── index.html │ │ │ ├── background.png │ │ │ ├── basic-options │ │ │ │ └── index.html │ │ │ ├── basic-usage │ │ │ │ └── index.html │ │ │ ├── canvas │ │ │ │ └── index.html │ │ │ ├── categories │ │ │ │ └── index.html │ │ │ ├── examples.css │ │ │ ├── image │ │ │ │ ├── hs-2004-27-a-large-web.jpg │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interacting │ │ │ │ └── index.html │ │ │ ├── navigate │ │ │ │ ├── arrow-down.gif │ │ │ │ ├── arrow-left.gif │ │ │ │ ├── arrow-right.gif │ │ │ │ ├── arrow-up.gif │ │ │ │ └── index.html │ │ │ ├── percentiles │ │ │ │ └── index.html │ │ │ ├── realtime │ │ │ │ └── index.html │ │ │ ├── resize │ │ │ │ └── index.html │ │ │ ├── selection │ │ │ │ └── index.html │ │ │ ├── series-errorbars │ │ │ │ └── index.html │ │ │ ├── series-pie │ │ │ │ └── index.html │ │ │ ├── series-toggle │ │ │ │ └── index.html │ │ │ ├── series-types │ │ │ │ └── index.html │ │ │ ├── shared │ │ │ │ └── jquery-ui │ │ │ │ │ └── jquery-ui.min.css │ │ │ ├── stacking │ │ │ │ └── index.html │ │ │ ├── symbols │ │ │ │ └── index.html │ │ │ ├── threshold │ │ │ │ └── index.html │ │ │ ├── tracking │ │ │ │ └── index.html │ │ │ ├── visitors │ │ │ │ └── index.html │ │ │ └── zooming │ │ │ │ └── index.html │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── flot.jquery.json │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.flot.canvas.js │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.errorbars.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.threshold.js │ │ ├── jquery.flot.time.js │ │ ├── jquery.js │ │ └── package.json │ │ ├── jquery-transit │ │ └── jquery-transit.js │ │ ├── jquery-ui │ │ ├── css │ │ │ └── flick │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ ├── ui-bg_flat_55_ffffff_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_100_f6f6f6_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_25_0073ea_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_50_dddddd_1x100.png │ │ │ │ ├── ui-icons_0073ea_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_666666_256x240.png │ │ │ │ ├── ui-icons_ff0084_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ └── jquery-ui-1.8.17.custom.css │ │ ├── index.html │ │ └── js │ │ │ ├── jquery-1.7.1.min.js │ │ │ └── jquery-ui-1.8.17.custom.min.js │ │ └── jquery.form.js ├── talk_voting.py ├── talks.py ├── templatetags │ ├── __init__.py │ ├── conference.py │ └── template_tools.py ├── tickets.py ├── tools │ ├── __init__.py │ └── voteengine-0.99 │ │ ├── CHANGES │ │ ├── docs.html │ │ ├── input.txt │ │ ├── rob │ │ ├── rob2 │ │ ├── roy │ │ ├── test │ │ ├── test2 │ │ ├── test3 │ │ ├── test5 │ │ ├── ve.py │ │ ├── voteengine.py │ │ ├── votelib.py │ │ ├── votemain.py │ │ ├── votemethod.py │ │ └── zav ├── user_panel.py ├── users.py └── utils.py ├── docker-compose-vscode-debugger.yml ├── docker-compose.yml ├── email_template ├── __init__.py ├── admin.py ├── models.py ├── utils.py └── views.py ├── ep-social-ticket-search-app ├── CREDITS ├── README ├── css │ └── materialize.min.css ├── fonts │ └── roboto │ │ ├── Roboto-Bold.eot │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Bold.woff │ │ ├── Roboto-Bold.woff2 │ │ ├── Roboto-Light.eot │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Light.woff │ │ ├── Roboto-Light.woff2 │ │ ├── Roboto-Medium.eot │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-Regular.eot │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Regular.woff │ │ ├── Roboto-Regular.woff2 │ │ ├── Roboto-Thin.eot │ │ ├── Roboto-Thin.ttf │ │ ├── Roboto-Thin.woff │ │ └── Roboto-Thin.woff2 ├── js │ ├── jquery.min.js │ ├── list.fuzzysearch.js │ ├── list.js │ └── materialize.min.js ├── materialize │ ├── LICENSE │ ├── README.md │ └── font │ │ ├── material-design-icons │ │ ├── LICENSE.txt │ │ ├── Material-Design-Icons.eot │ │ ├── Material-Design-Icons.svg │ │ ├── Material-Design-Icons.ttf │ │ ├── Material-Design-Icons.woff │ │ └── Material-Design-Icons.woff2 │ │ └── roboto │ │ ├── Roboto-Bold.eot │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Bold.woff │ │ ├── Roboto-Bold.woff2 │ │ ├── Roboto-Light.eot │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Light.woff │ │ ├── Roboto-Light.woff2 │ │ ├── Roboto-Medium.eot │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-Regular.eot │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Regular.woff │ │ ├── Roboto-Regular.woff2 │ │ ├── Roboto-Thin.eot │ │ ├── Roboto-Thin.ttf │ │ ├── Roboto-Thin.woff │ │ └── Roboto-Thin.woff2 └── run.sh ├── ep-ticket-search-app ├── CREDITS ├── README ├── css │ └── materialize.min.css ├── fonts │ └── roboto │ │ ├── Roboto-Bold.eot │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Bold.woff │ │ ├── Roboto-Bold.woff2 │ │ ├── Roboto-Light.eot │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Light.woff │ │ ├── Roboto-Light.woff2 │ │ ├── Roboto-Medium.eot │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-Regular.eot │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Regular.woff │ │ ├── Roboto-Regular.woff2 │ │ ├── Roboto-Thin.eot │ │ ├── Roboto-Thin.ttf │ │ ├── Roboto-Thin.woff │ │ └── Roboto-Thin.woff2 ├── js │ ├── jquery.min.js │ ├── list.fuzzysearch.js │ ├── list.js │ └── materialize.min.js ├── materialize │ ├── LICENSE │ ├── README.md │ └── font │ │ ├── material-design-icons │ │ ├── LICENSE.txt │ │ ├── Material-Design-Icons.eot │ │ ├── Material-Design-Icons.svg │ │ ├── Material-Design-Icons.ttf │ │ ├── Material-Design-Icons.woff │ │ └── Material-Design-Icons.woff2 │ │ └── roboto │ │ ├── Roboto-Bold.eot │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Bold.woff │ │ ├── Roboto-Bold.woff2 │ │ ├── Roboto-Light.eot │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Light.woff │ │ ├── Roboto-Light.woff2 │ │ ├── Roboto-Medium.eot │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-Regular.eot │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Regular.woff │ │ ├── Roboto-Regular.woff2 │ │ ├── Roboto-Thin.eot │ │ ├── Roboto-Thin.ttf │ │ ├── Roboto-Thin.woff │ │ └── Roboto-Thin.woff2 └── run.sh ├── manage.py ├── media_public └── conference │ └── sponsor │ └── resized │ ├── continuum-analytics.jpg │ ├── github.jpg │ └── redhat.jpg ├── p3 ├── __init__.py ├── admin.py ├── apps.py ├── context_processors.py ├── dataaccess.py ├── listeners.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── accepted_talks.py │ │ ├── attendify_schedule_csv.py │ │ ├── attendify_schedule_xlsx.py │ │ ├── attendify_speakers_xlsx.py │ │ ├── build_social_ticket_search_app.py │ │ ├── build_ticket_search_app.py │ │ ├── check_schedule.py │ │ ├── create_bulk_coupons.py │ │ ├── create_community_coupons.py │ │ ├── create_conference_organizer_coupons.py │ │ ├── create_coupon_batch.py │ │ ├── create_speaker_coupons.py │ │ ├── create_trainer_training_pass_coupons.py │ │ ├── delete_spam_users.py │ │ ├── get_attendees_csv.py │ │ ├── guidebook_csv.py │ │ ├── partner_events.py │ │ ├── send_talk_verification_email.py │ │ ├── speaker_list.py │ │ ├── speakers_csv.py │ │ ├── sync_profiles.py │ │ ├── talk_abstracts.py │ │ ├── ticket_list.py │ │ ├── ticket_profiles.py │ │ ├── users.py │ │ ├── users_with_unassigned_tickets.py │ │ └── video_schedule_xlsx.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_remove_unused_models.py │ ├── 0003_add_name_field_to_ticket_conference.py │ ├── 0004_mystery_migrations_maybe_2_to_3_bytes_to_str.py │ ├── 0005_auto_shirt_and_dietary_defaults.py │ ├── 0006_remove_p3talk.py │ ├── 0007_auto_20200217_1654.py │ ├── 0008_remove_ticketconference_name.py │ └── __init__.py ├── models.py ├── static │ ├── p5 │ │ └── images │ │ │ ├── close.png │ │ │ └── headshot-default.jpg │ └── p6 │ │ └── javascripts │ │ └── ckeditor.wysiwyg.js ├── stats.py ├── templatetags │ ├── __init__.py │ ├── meta.py │ └── sessions.py ├── urls.py ├── utils.py └── views.py ├── pycon ├── __init__.py ├── ci_settings.py ├── dev_settings.py ├── settings.py ├── test_settings.py ├── urls.py └── wsgi.py ├── pytest.ini ├── pytest_ci.ini ├── requirements-dev.in ├── requirements-dev.txt ├── requirements.in ├── requirements.txt ├── scripts ├── __init__.py ├── fix_names.py └── restore_epstage_data.py ├── setup.cfg ├── templates ├── 404.html ├── 500.html ├── admin │ ├── assopy │ │ ├── invoice │ │ │ └── change_form.html │ │ └── order │ │ │ ├── change_form.html │ │ │ └── change_list.html │ ├── auth │ │ └── user │ │ │ ├── change_form.html │ │ │ └── new_order.html │ ├── conference │ │ ├── conference │ │ │ ├── attendee_stats.html │ │ │ ├── attendee_stats_details.html │ │ │ ├── schedule_view.html │ │ │ ├── schedule_view_base.html │ │ │ └── schedule_view_schedule.html │ │ ├── conferencetag │ │ │ ├── change_form.html │ │ │ └── merge.html │ │ ├── schedule │ │ │ ├── change_form.html │ │ │ └── change_list.html │ │ ├── speaker │ │ │ ├── change_list.html │ │ │ └── stats_list.html │ │ └── ticket │ │ │ ├── change_form.html │ │ │ └── change_list.html │ └── inc │ │ └── extrahead.html ├── assopy │ ├── admin │ │ ├── edit_invoices.html │ │ └── order_stats.html │ ├── invoice.html │ └── invoices │ │ ├── _additional_text_for_2018.html │ │ ├── _additional_text_for_2019.html │ │ ├── _additional_text_for_2020.html │ │ ├── _additional_text_for_2021.html │ │ └── _additional_text_for_2022.html ├── cmsplugin_filer_image │ └── plugins │ │ └── image │ │ └── default.html ├── conference │ ├── README │ ├── _cookie_consent.html │ ├── _googleanalytics.html │ ├── accounts │ │ ├── _login_with_google.html │ │ ├── login.html │ │ ├── password_reset.html │ │ ├── password_reset_complete.html │ │ ├── password_reset_confirm.html │ │ ├── password_reset_done.html │ │ ├── signup.html │ │ └── signup_please_verify_email.html │ ├── admin │ │ ├── schedule_event.html │ │ └── schedule_tracks.html │ ├── base.html │ ├── cart │ │ ├── _order_summary.html │ │ ├── base.html │ │ ├── step_1_choose_type_of_order.html │ │ ├── step_2_pick_tickets.html │ │ ├── step_3_add_billing_info.html │ │ ├── step_4_payment.html │ │ └── step_5_congrats_order_complete.html │ ├── cfp │ │ ├── _steps.html │ │ ├── cfp_is_closed.html │ │ ├── preview.html │ │ ├── step1_talk_info.html │ │ ├── step2_add_speaker.html │ │ ├── step3_thanks.html │ │ ├── update_proposal.html │ │ └── update_speakers.html │ ├── conference │ │ └── talk_social_card.html │ ├── content │ │ ├── _breadcrumbs.html │ │ ├── _breadcrumbs_bar.html │ │ ├── _breadcrumbs_no_active.html │ │ ├── _menu.html │ │ ├── _messages.html │ │ ├── content_only_page.html │ │ ├── generic_content_page_with_sidebar.html │ │ └── wide_content_page.html │ ├── debugpanel │ │ ├── fares_setup.html │ │ ├── index.html │ │ ├── invoice_placeholders.html │ │ ├── invoices_export.html │ │ └── reissue_invoice.html │ ├── emails │ │ ├── order_confirmation_email.txt │ │ ├── password_reset_email.txt │ │ ├── password_reset_subject.txt │ │ └── signup_verification_email.txt │ ├── footer │ │ ├── _show_menu_in_footer.html │ │ └── footer.html │ ├── header │ │ ├── _homepage_jumbotron.html │ │ ├── _nav.html │ │ ├── _nav_menu.html │ │ ├── _regular.html │ │ └── _with_jumbotron.html │ ├── homepage.html │ ├── homepage │ │ ├── _schedule_overview.html │ │ ├── _sponsors.html │ │ ├── _venue.html │ │ ├── home.html │ │ └── home_template.html │ ├── news │ │ └── list.html │ ├── profiles │ │ ├── profile.html │ │ └── profile_unavailable.html │ ├── schedule │ │ └── schedule.html │ ├── signup.html │ ├── talk_voting │ │ ├── _voting_form.html │ │ ├── voting.html │ │ ├── voting_is_closed.html │ │ └── voting_is_unavailable.html │ ├── talks │ │ ├── talk.html │ │ └── update_talk.html │ └── user_panel │ │ ├── _invoices.html │ │ ├── _orders.html │ │ ├── _proposals.html │ │ ├── _tickets.html │ │ ├── assign_ticket.html │ │ ├── base.html │ │ ├── configure_ticket.html │ │ ├── dashboard.html │ │ ├── forms │ │ ├── privacy_settings_recruiting.html │ │ ├── privacy_settings_sms_messages.html │ │ ├── privacy_settings_user_messages.html │ │ └── profile_settings_picture.html │ │ ├── password_change.html │ │ ├── password_change_done.html │ │ ├── privacy_settings.html │ │ └── profile_settings.html ├── ep19 │ └── bs │ │ └── content │ │ └── generic_content_page_with_sidebar.html └── p3 │ └── admin │ └── index.html └── tests ├── __init__.py ├── common_tools.py ├── conftest.py ├── factories.py ├── test_accounts.py ├── test_assopy_admin.py ├── test_assopy_templates_paths.py ├── test_assopy_user.py ├── test_attendeeprofiles.py ├── test_avatar.py ├── test_cart.py ├── test_cfp.py ├── test_change_password.py ├── test_cmsplugins.py ├── test_conference_admin.py ├── test_debugpanel.py ├── test_exchangerates.py ├── test_homepage.py ├── test_invoices.py ├── test_management_commands.py ├── test_matrix_auth_api.py ├── test_models.py ├── test_new_talk_voting.py ├── test_p3_templatetags.py ├── test_profile.py ├── test_provisioning_script.py ├── test_reset_password.py ├── test_schedule.py ├── test_stats.py ├── test_streamset.py ├── test_talk_voting.py ├── test_talks.py ├── test_user_login_and_registration.py └── test_user_panel.py /.github/workflows/ci_pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/.github/workflows/ci_pipeline.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/.mailmap -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.6.9 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.bsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/LICENSE.bsd -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/Galyon-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/css/Galyon-Bold.otf -------------------------------------------------------------------------------- /assets/css/Galyon-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/css/Galyon-Italic.otf -------------------------------------------------------------------------------- /assets/css/Galyon-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/css/Galyon-Regular.otf -------------------------------------------------------------------------------- /assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/css/bs-stepper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/css/bs-stepper.min.css -------------------------------------------------------------------------------- /assets/css/europython-bs-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/css/europython-bs-theme.css -------------------------------------------------------------------------------- /assets/css/europython-customizations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/css/europython-customizations.css -------------------------------------------------------------------------------- /assets/img/ep2021-background-online.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/ep2021-background-online.jpg -------------------------------------------------------------------------------- /assets/img/ep2021-favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/ep2021-favicon.png -------------------------------------------------------------------------------- /assets/img/ep2021-icon-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/ep2021-icon-logo-small.png -------------------------------------------------------------------------------- /assets/img/ep2021-icon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/ep2021-icon-logo.png -------------------------------------------------------------------------------- /assets/img/ep2021-logo-white-1024px-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/ep2021-logo-white-1024px-alpha.png -------------------------------------------------------------------------------- /assets/img/ep2021-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/ep2021-logo.png -------------------------------------------------------------------------------- /assets/img/ep2021-online-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/ep2021-online-logo.png -------------------------------------------------------------------------------- /assets/img/ep2021-snake-wrangler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/ep2021-snake-wrangler.jpg -------------------------------------------------------------------------------- /assets/img/ep2021-social-online-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/ep2021-social-online-card.jpg -------------------------------------------------------------------------------- /assets/img/ep2021-social-online-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/ep2021-social-online-card.png -------------------------------------------------------------------------------- /assets/img/ep2021-white-logo-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/ep2021-white-logo-alpha.png -------------------------------------------------------------------------------- /assets/img/ep2022-background-ccd-original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/ep2022-background-ccd-original.jpg -------------------------------------------------------------------------------- /assets/img/ep2022-background-ccd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/ep2022-background-ccd.jpg -------------------------------------------------------------------------------- /assets/img/ep2022-conference-venue-from-above.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/ep2022-conference-venue-from-above.jpg -------------------------------------------------------------------------------- /assets/img/ep2022-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/ep2022-social-card.jpg -------------------------------------------------------------------------------- /assets/img/ep2022-social-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/ep2022-social-card.png -------------------------------------------------------------------------------- /assets/img/epslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/epslogo.png -------------------------------------------------------------------------------- /assets/img/fitted-cut-size-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/fitted-cut-size-guide.png -------------------------------------------------------------------------------- /assets/img/straight-cut-size-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/img/straight-cut-size-guide.png -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/js/bs-stepper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/js/bs-stepper.min.js -------------------------------------------------------------------------------- /assets/js/generate_toc_for_cms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/js/generate_toc_for_cms.js -------------------------------------------------------------------------------- /assets/js/jquery-3.2.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/js/jquery-3.2.1.slim.min.js -------------------------------------------------------------------------------- /assets/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/js/popper.min.js -------------------------------------------------------------------------------- /assets/js/taggit_labels_customised_with_max_number_of_tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assets/js/taggit_labels_customised_with_max_number_of_tags.js -------------------------------------------------------------------------------- /assopy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assopy/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/admin.py -------------------------------------------------------------------------------- /assopy/auth_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/auth_backends.py -------------------------------------------------------------------------------- /assopy/dataaccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/dataaccess.py -------------------------------------------------------------------------------- /assopy/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/forms.py -------------------------------------------------------------------------------- /assopy/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assopy/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assopy/management/commands/update_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/management/commands/update_orders.py -------------------------------------------------------------------------------- /assopy/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/migrations/0001_initial.py -------------------------------------------------------------------------------- /assopy/migrations/0002_auto_20180408_2337.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/migrations/0002_auto_20180408_2337.py -------------------------------------------------------------------------------- /assopy/migrations/0003_add_exrate_fields_to_invoice_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/migrations/0003_add_exrate_fields_to_invoice_model.py -------------------------------------------------------------------------------- /assopy/migrations/0004_add_order_payment_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/migrations/0004_add_order_payment_date.py -------------------------------------------------------------------------------- /assopy/migrations/0005_simplify_invoice_html_field_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/migrations/0005_simplify_invoice_html_field_name.py -------------------------------------------------------------------------------- /assopy/migrations/0006_add_bank_to_payment_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/migrations/0006_add_bank_to_payment_options.py -------------------------------------------------------------------------------- /assopy/migrations/0007_add_customer_to_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/migrations/0007_add_customer_to_invoice.py -------------------------------------------------------------------------------- /assopy/migrations/0008_remove_user_oauth_info_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/migrations/0008_remove_user_oauth_info_model.py -------------------------------------------------------------------------------- /assopy/migrations/0009_rename_assopy_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/migrations/0009_rename_assopy_user.py -------------------------------------------------------------------------------- /assopy/migrations/0010_add_uuid_to_Order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/migrations/0010_add_uuid_to_Order.py -------------------------------------------------------------------------------- /assopy/migrations/0011_updated_vat_settings_for_swiss_vat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/migrations/0011_updated_vat_settings_for_swiss_vat.py -------------------------------------------------------------------------------- /assopy/migrations/0012_add_type_to_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/migrations/0012_add_type_to_order.py -------------------------------------------------------------------------------- /assopy/migrations/0013_mystery_migrations_maybe_2_to_3_bytes_to_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/migrations/0013_mystery_migrations_maybe_2_to_3_bytes_to_str.py -------------------------------------------------------------------------------- /assopy/migrations/0014_deprecate_paypal_20191124_2308.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/migrations/0014_deprecate_paypal_20191124_2308.py -------------------------------------------------------------------------------- /assopy/migrations/0015_remove_refund_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/migrations/0015_remove_refund_models.py -------------------------------------------------------------------------------- /assopy/migrations/0016_null_has_no_effect_on_vat_manytomay_relationship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/migrations/0016_null_has_no_effect_on_vat_manytomay_relationship.py -------------------------------------------------------------------------------- /assopy/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assopy/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/models.py -------------------------------------------------------------------------------- /assopy/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/stats.py -------------------------------------------------------------------------------- /assopy/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assopy/templatetags/assopy_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/templatetags/assopy_tags.py -------------------------------------------------------------------------------- /assopy/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/urls.py -------------------------------------------------------------------------------- /assopy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/utils.py -------------------------------------------------------------------------------- /assopy/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/assopy/views.py -------------------------------------------------------------------------------- /cms_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/cms_utils/__init__.py -------------------------------------------------------------------------------- /cms_utils/cms_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/cms_utils/cms_app.py -------------------------------------------------------------------------------- /cms_utils/cms_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/cms_utils/cms_plugins.py -------------------------------------------------------------------------------- /cms_utils/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/cms_utils/migrations/0001_initial.py -------------------------------------------------------------------------------- /cms_utils/migrations/0002_templatepluginmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/cms_utils/migrations/0002_templatepluginmodel.py -------------------------------------------------------------------------------- /cms_utils/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cms_utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/cms_utils/models.py -------------------------------------------------------------------------------- /cms_utils/processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/cms_utils/processors.py -------------------------------------------------------------------------------- /cms_utils/templates/djangocms_markitup/markitup.html: -------------------------------------------------------------------------------- 1 | {{ instance.body }} -------------------------------------------------------------------------------- /cms_utils/templates/djangocms_template/template_plugin.html: -------------------------------------------------------------------------------- 1 | {{ instance.body|safe }} -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/common/decorators.py -------------------------------------------------------------------------------- /common/django_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/common/django_urls.py -------------------------------------------------------------------------------- /common/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/common/http.py -------------------------------------------------------------------------------- /common/jsonify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/common/jsonify.py -------------------------------------------------------------------------------- /common/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/tests/test_jsonify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/common/tests/test_jsonify.py -------------------------------------------------------------------------------- /conference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/__init__.py -------------------------------------------------------------------------------- /conference/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/accounts.py -------------------------------------------------------------------------------- /conference/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/admin.py -------------------------------------------------------------------------------- /conference/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/api.py -------------------------------------------------------------------------------- /conference/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/apps.py -------------------------------------------------------------------------------- /conference/cachef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/cachef.py -------------------------------------------------------------------------------- /conference/cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/cart.py -------------------------------------------------------------------------------- /conference/cfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/cfp.py -------------------------------------------------------------------------------- /conference/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/context_processors.py -------------------------------------------------------------------------------- /conference/currencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/currencies.py -------------------------------------------------------------------------------- /conference/dataaccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/dataaccess.py -------------------------------------------------------------------------------- /conference/debug_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/debug_panel.py -------------------------------------------------------------------------------- /conference/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/decorators.py -------------------------------------------------------------------------------- /conference/fares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/fares.py -------------------------------------------------------------------------------- /conference/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/forms/__init__.py -------------------------------------------------------------------------------- /conference/forms/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/forms/auth.py -------------------------------------------------------------------------------- /conference/forms/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/forms/forms.py -------------------------------------------------------------------------------- /conference/forms/talks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/forms/talks.py -------------------------------------------------------------------------------- /conference/gravatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/gravatar.py -------------------------------------------------------------------------------- /conference/homepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/homepage.py -------------------------------------------------------------------------------- /conference/invoicing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/invoicing.py -------------------------------------------------------------------------------- /conference/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/listeners.py -------------------------------------------------------------------------------- /conference/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conference/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conference/management/commands/add_invoices_for_zero_amount_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/management/commands/add_invoices_for_zero_amount_orders.py -------------------------------------------------------------------------------- /conference/management/commands/create_initial_data_for_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/management/commands/create_initial_data_for_dev.py -------------------------------------------------------------------------------- /conference/management/commands/get_conference_speakers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/management/commands/get_conference_speakers.py -------------------------------------------------------------------------------- /conference/management/commands/make_speaker_profiles_public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/management/commands/make_speaker_profiles_public.py -------------------------------------------------------------------------------- /conference/management/commands/pull_latest_exrates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/management/commands/pull_latest_exrates.py -------------------------------------------------------------------------------- /conference/management/commands/ranking_of_talks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/management/commands/ranking_of_talks.py -------------------------------------------------------------------------------- /conference/management/commands/upgrade_placeholder_invoices_for_2018.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/management/commands/upgrade_placeholder_invoices_for_2018.py -------------------------------------------------------------------------------- /conference/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0001_initial.py -------------------------------------------------------------------------------- /conference/migrations/0002_talk_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0002_talk_domain.py -------------------------------------------------------------------------------- /conference/migrations/0003_add_domain_level_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0003_add_domain_level_field.py -------------------------------------------------------------------------------- /conference/migrations/0004_add_exchangerate_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0004_add_exchangerate_model.py -------------------------------------------------------------------------------- /conference/migrations/0005_add_captcha_question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0005_add_captcha_question.py -------------------------------------------------------------------------------- /conference/migrations/0006_update_talk_model_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0006_update_talk_model_fields.py -------------------------------------------------------------------------------- /conference/migrations/0007_remove_special_place.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0007_remove_special_place.py -------------------------------------------------------------------------------- /conference/migrations/0008_add_news_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0008_add_news_model.py -------------------------------------------------------------------------------- /conference/migrations/0009_add_field_created_by_and_modified_to_talk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0009_add_field_created_by_and_modified_to_talk.py -------------------------------------------------------------------------------- /conference/migrations/0010_add_gender_and_is_minor_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0010_add_gender_and_is_minor_fields.py -------------------------------------------------------------------------------- /conference/migrations/0011_add_stripepayment_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0011_add_stripepayment_model.py -------------------------------------------------------------------------------- /conference/migrations/0012_add_vototalk_timestamps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0012_add_vototalk_timestamps.py -------------------------------------------------------------------------------- /conference/migrations/0013_add_stripe_charge_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0013_add_stripe_charge_id.py -------------------------------------------------------------------------------- /conference/migrations/0014_stripe_charge_default_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0014_stripe_charge_default_uuid.py -------------------------------------------------------------------------------- /conference/migrations/0015_add_talk_url_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0015_add_talk_url_fields.py -------------------------------------------------------------------------------- /conference/migrations/0016_mystery_migrations_maybe_2_to_3_bytes_to_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0016_mystery_migrations_maybe_2_to_3_bytes_to_str.py -------------------------------------------------------------------------------- /conference/migrations/0017_retire_more_unused_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0017_retire_more_unused_models.py -------------------------------------------------------------------------------- /conference/migrations/0018_remove_unused_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0018_remove_unused_models.py -------------------------------------------------------------------------------- /conference/migrations/0019_add_stripe_session_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0019_add_stripe_session_id.py -------------------------------------------------------------------------------- /conference/migrations/0020_make_gender_field_required.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0020_make_gender_field_required.py -------------------------------------------------------------------------------- /conference/migrations/0021_alter_add_deletion_PROTECT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0021_alter_add_deletion_PROTECT.py -------------------------------------------------------------------------------- /conference/migrations/0022_alter_sponsorincome_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0022_alter_sponsorincome_tags.py -------------------------------------------------------------------------------- /conference/migrations/0023_update_field_descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0023_update_field_descriptions.py -------------------------------------------------------------------------------- /conference/migrations/0024_add_talk_status_declined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0024_add_talk_status_declined.py -------------------------------------------------------------------------------- /conference/migrations/0025_add_poster_45_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0025_add_poster_45_type.py -------------------------------------------------------------------------------- /conference/migrations/0026_auto_20201204_1130.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0026_auto_20201204_1130.py -------------------------------------------------------------------------------- /conference/migrations/0027_auto_20201204_1539.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0027_auto_20201204_1539.py -------------------------------------------------------------------------------- /conference/migrations/0028_changes_to_conferencetag_and_conferencetaggeditem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0028_changes_to_conferencetag_and_conferencetaggeditem.py -------------------------------------------------------------------------------- /conference/migrations/0029_talk_availability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0029_talk_availability.py -------------------------------------------------------------------------------- /conference/migrations/0030_add_streamset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0030_add_streamset.py -------------------------------------------------------------------------------- /conference/migrations/0031_update_streamset_help_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/migrations/0031_update_streamset_help_text.py -------------------------------------------------------------------------------- /conference/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conference/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/models.py -------------------------------------------------------------------------------- /conference/news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/news.py -------------------------------------------------------------------------------- /conference/orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/orders.py -------------------------------------------------------------------------------- /conference/payments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/payments.py -------------------------------------------------------------------------------- /conference/profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/profiles.py -------------------------------------------------------------------------------- /conference/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/schedule.py -------------------------------------------------------------------------------- /conference/social_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/social_card.py -------------------------------------------------------------------------------- /conference/static/conference/images/500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/images/500.jpg -------------------------------------------------------------------------------- /conference/static/conference/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/init.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/.gitignore -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/.travis.yml -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/API.md -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/CONTRIBUTING.md -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/FAQ.md -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/LICENSE.txt -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/Makefile -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/NEWS.md -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/PLUGINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/PLUGINS.md -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/README.md -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/component.json -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/ajax/data-eu-gdp-growth-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/ajax/data-eu-gdp-growth-1.json -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/ajax/data-eu-gdp-growth-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/ajax/data-eu-gdp-growth-2.json -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/ajax/data-eu-gdp-growth-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/ajax/data-eu-gdp-growth-3.json -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/ajax/data-eu-gdp-growth-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/ajax/data-eu-gdp-growth-4.json -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/ajax/data-eu-gdp-growth-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/ajax/data-eu-gdp-growth-5.json -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/ajax/data-eu-gdp-growth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/ajax/data-eu-gdp-growth.json -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/ajax/data-japan-gdp-growth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/ajax/data-japan-gdp-growth.json -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/ajax/data-usa-gdp-growth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/ajax/data-usa-gdp-growth.json -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/ajax/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/ajax/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/annotating/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/annotating/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-interacting/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-interacting/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-multiple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-multiple/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/date.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/africa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/africa -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/antarctica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/antarctica -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/asia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/asia -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/australasia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/australasia -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/backward: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/backward -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/etcetera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/etcetera -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/europe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/europe -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/factory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/factory -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/iso3166.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/iso3166.tab -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/leapseconds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/leapseconds -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/northamerica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/northamerica -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/pacificnew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/pacificnew -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/solar87: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/solar87 -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/solar88: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/solar88 -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/solar89: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/solar89 -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/southamerica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/southamerica -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/systemv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/systemv -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/yearistype.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/yearistype.sh -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time-zones/tz/zone.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time-zones/tz/zone.tab -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/axes-time/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/axes-time/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/background.png -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/basic-options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/basic-options/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/basic-usage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/basic-usage/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/canvas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/canvas/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/categories/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/categories/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/examples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/examples.css -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/image/hs-2004-27-a-large-web.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/image/hs-2004-27-a-large-web.jpg -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/image/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/image/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/interacting/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/interacting/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/navigate/arrow-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/navigate/arrow-down.gif -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/navigate/arrow-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/navigate/arrow-left.gif -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/navigate/arrow-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/navigate/arrow-right.gif -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/navigate/arrow-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/navigate/arrow-up.gif -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/navigate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/navigate/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/percentiles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/percentiles/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/realtime/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/realtime/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/resize/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/resize/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/selection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/selection/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/series-errorbars/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/series-errorbars/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/series-pie/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/series-pie/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/series-toggle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/series-toggle/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/series-types/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/series-types/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/shared/jquery-ui/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/shared/jquery-ui/jquery-ui.min.css -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/stacking/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/stacking/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/symbols/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/symbols/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/threshold/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/threshold/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/tracking/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/tracking/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/visitors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/visitors/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/examples/zooming/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/examples/zooming/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/excanvas.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/excanvas.min.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/flot.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/flot.jquery.json -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/jquery.colorhelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/jquery.colorhelpers.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/jquery.flot.canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/jquery.flot.canvas.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/jquery.flot.categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/jquery.flot.categories.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/jquery.flot.crosshair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/jquery.flot.crosshair.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/jquery.flot.errorbars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/jquery.flot.errorbars.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/jquery.flot.fillbetween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/jquery.flot.fillbetween.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/jquery.flot.image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/jquery.flot.image.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/jquery.flot.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/jquery.flot.navigate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/jquery.flot.navigate.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/jquery.flot.pie.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/jquery.flot.resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/jquery.flot.resize.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/jquery.flot.selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/jquery.flot.selection.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/jquery.flot.stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/jquery.flot.stack.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/jquery.flot.symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/jquery.flot.symbol.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/jquery.flot.threshold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/jquery.flot.threshold.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/jquery.flot.time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/jquery.flot.time.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/jquery.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-flot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-flot/package.json -------------------------------------------------------------------------------- /conference/static/conference/jquery-transit/jquery-transit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-transit/jquery-transit.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-ui/css/flick/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-ui/css/flick/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /conference/static/conference/jquery-ui/css/flick/images/ui-bg_flat_0_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-ui/css/flick/images/ui-bg_flat_0_eeeeee_40x100.png -------------------------------------------------------------------------------- /conference/static/conference/jquery-ui/css/flick/images/ui-bg_flat_55_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-ui/css/flick/images/ui-bg_flat_55_ffffff_40x100.png -------------------------------------------------------------------------------- /conference/static/conference/jquery-ui/css/flick/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-ui/css/flick/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /conference/static/conference/jquery-ui/css/flick/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-ui/css/flick/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /conference/static/conference/jquery-ui/css/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-ui/css/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png -------------------------------------------------------------------------------- /conference/static/conference/jquery-ui/css/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-ui/css/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png -------------------------------------------------------------------------------- /conference/static/conference/jquery-ui/css/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-ui/css/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png -------------------------------------------------------------------------------- /conference/static/conference/jquery-ui/css/flick/images/ui-icons_0073ea_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-ui/css/flick/images/ui-icons_0073ea_256x240.png -------------------------------------------------------------------------------- /conference/static/conference/jquery-ui/css/flick/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-ui/css/flick/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /conference/static/conference/jquery-ui/css/flick/images/ui-icons_666666_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-ui/css/flick/images/ui-icons_666666_256x240.png -------------------------------------------------------------------------------- /conference/static/conference/jquery-ui/css/flick/images/ui-icons_ff0084_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-ui/css/flick/images/ui-icons_ff0084_256x240.png -------------------------------------------------------------------------------- /conference/static/conference/jquery-ui/css/flick/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-ui/css/flick/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /conference/static/conference/jquery-ui/css/flick/jquery-ui-1.8.17.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-ui/css/flick/jquery-ui-1.8.17.custom.css -------------------------------------------------------------------------------- /conference/static/conference/jquery-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-ui/index.html -------------------------------------------------------------------------------- /conference/static/conference/jquery-ui/js/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-ui/js/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /conference/static/conference/jquery-ui/js/jquery-ui-1.8.17.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery-ui/js/jquery-ui-1.8.17.custom.min.js -------------------------------------------------------------------------------- /conference/static/conference/jquery.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/static/conference/jquery.form.js -------------------------------------------------------------------------------- /conference/talk_voting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/talk_voting.py -------------------------------------------------------------------------------- /conference/talks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/talks.py -------------------------------------------------------------------------------- /conference/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conference/templatetags/conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/templatetags/conference.py -------------------------------------------------------------------------------- /conference/templatetags/template_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/templatetags/template_tools.py -------------------------------------------------------------------------------- /conference/tickets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/tickets.py -------------------------------------------------------------------------------- /conference/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conference/tools/voteengine-0.99/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/tools/voteengine-0.99/CHANGES -------------------------------------------------------------------------------- /conference/tools/voteengine-0.99/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/tools/voteengine-0.99/docs.html -------------------------------------------------------------------------------- /conference/tools/voteengine-0.99/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/tools/voteengine-0.99/input.txt -------------------------------------------------------------------------------- /conference/tools/voteengine-0.99/rob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/tools/voteengine-0.99/rob -------------------------------------------------------------------------------- /conference/tools/voteengine-0.99/rob2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/tools/voteengine-0.99/rob2 -------------------------------------------------------------------------------- /conference/tools/voteengine-0.99/roy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/tools/voteengine-0.99/roy -------------------------------------------------------------------------------- /conference/tools/voteengine-0.99/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/tools/voteengine-0.99/test -------------------------------------------------------------------------------- /conference/tools/voteengine-0.99/test2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/tools/voteengine-0.99/test2 -------------------------------------------------------------------------------- /conference/tools/voteengine-0.99/test3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/tools/voteengine-0.99/test3 -------------------------------------------------------------------------------- /conference/tools/voteengine-0.99/test5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/tools/voteengine-0.99/test5 -------------------------------------------------------------------------------- /conference/tools/voteengine-0.99/ve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/tools/voteengine-0.99/ve.py -------------------------------------------------------------------------------- /conference/tools/voteengine-0.99/voteengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/tools/voteengine-0.99/voteengine.py -------------------------------------------------------------------------------- /conference/tools/voteengine-0.99/votelib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/tools/voteengine-0.99/votelib.py -------------------------------------------------------------------------------- /conference/tools/voteengine-0.99/votemain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/tools/voteengine-0.99/votemain.py -------------------------------------------------------------------------------- /conference/tools/voteengine-0.99/votemethod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/tools/voteengine-0.99/votemethod.py -------------------------------------------------------------------------------- /conference/tools/voteengine-0.99/zav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/tools/voteengine-0.99/zav -------------------------------------------------------------------------------- /conference/user_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/user_panel.py -------------------------------------------------------------------------------- /conference/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/users.py -------------------------------------------------------------------------------- /conference/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/conference/utils.py -------------------------------------------------------------------------------- /docker-compose-vscode-debugger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/docker-compose-vscode-debugger.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /email_template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /email_template/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/email_template/admin.py -------------------------------------------------------------------------------- /email_template/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/email_template/models.py -------------------------------------------------------------------------------- /email_template/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/email_template/utils.py -------------------------------------------------------------------------------- /email_template/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /ep-social-ticket-search-app/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/CREDITS -------------------------------------------------------------------------------- /ep-social-ticket-search-app/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/README -------------------------------------------------------------------------------- /ep-social-ticket-search-app/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/css/materialize.min.css -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /ep-social-ticket-search-app/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /ep-social-ticket-search-app/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/js/jquery.min.js -------------------------------------------------------------------------------- /ep-social-ticket-search-app/js/list.fuzzysearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/js/list.fuzzysearch.js -------------------------------------------------------------------------------- /ep-social-ticket-search-app/js/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/js/list.js -------------------------------------------------------------------------------- /ep-social-ticket-search-app/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/js/materialize.min.js -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/LICENSE -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/README.md -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/material-design-icons/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/material-design-icons/LICENSE.txt -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.eot -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.svg -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.ttf -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.woff -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.woff2 -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /ep-social-ticket-search-app/materialize/font/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/materialize/font/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /ep-social-ticket-search-app/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-social-ticket-search-app/run.sh -------------------------------------------------------------------------------- /ep-ticket-search-app/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/CREDITS -------------------------------------------------------------------------------- /ep-ticket-search-app/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/README -------------------------------------------------------------------------------- /ep-ticket-search-app/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/css/materialize.min.css -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /ep-ticket-search-app/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /ep-ticket-search-app/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/js/jquery.min.js -------------------------------------------------------------------------------- /ep-ticket-search-app/js/list.fuzzysearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/js/list.fuzzysearch.js -------------------------------------------------------------------------------- /ep-ticket-search-app/js/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/js/list.js -------------------------------------------------------------------------------- /ep-ticket-search-app/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/js/materialize.min.js -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/LICENSE -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/README.md -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/material-design-icons/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/material-design-icons/LICENSE.txt -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.eot -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.svg -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.ttf -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.woff -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/material-design-icons/Material-Design-Icons.woff2 -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /ep-ticket-search-app/materialize/font/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/materialize/font/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /ep-ticket-search-app/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/ep-ticket-search-app/run.sh -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/manage.py -------------------------------------------------------------------------------- /media_public/conference/sponsor/resized/continuum-analytics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/media_public/conference/sponsor/resized/continuum-analytics.jpg -------------------------------------------------------------------------------- /media_public/conference/sponsor/resized/github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/media_public/conference/sponsor/resized/github.jpg -------------------------------------------------------------------------------- /media_public/conference/sponsor/resized/redhat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/media_public/conference/sponsor/resized/redhat.jpg -------------------------------------------------------------------------------- /p3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/__init__.py -------------------------------------------------------------------------------- /p3/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/admin.py -------------------------------------------------------------------------------- /p3/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/apps.py -------------------------------------------------------------------------------- /p3/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/context_processors.py -------------------------------------------------------------------------------- /p3/dataaccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/dataaccess.py -------------------------------------------------------------------------------- /p3/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/listeners.py -------------------------------------------------------------------------------- /p3/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p3/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p3/management/commands/accepted_talks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/accepted_talks.py -------------------------------------------------------------------------------- /p3/management/commands/attendify_schedule_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/attendify_schedule_csv.py -------------------------------------------------------------------------------- /p3/management/commands/attendify_schedule_xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/attendify_schedule_xlsx.py -------------------------------------------------------------------------------- /p3/management/commands/attendify_speakers_xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/attendify_speakers_xlsx.py -------------------------------------------------------------------------------- /p3/management/commands/build_social_ticket_search_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/build_social_ticket_search_app.py -------------------------------------------------------------------------------- /p3/management/commands/build_ticket_search_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/build_ticket_search_app.py -------------------------------------------------------------------------------- /p3/management/commands/check_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/check_schedule.py -------------------------------------------------------------------------------- /p3/management/commands/create_bulk_coupons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/create_bulk_coupons.py -------------------------------------------------------------------------------- /p3/management/commands/create_community_coupons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/create_community_coupons.py -------------------------------------------------------------------------------- /p3/management/commands/create_conference_organizer_coupons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/create_conference_organizer_coupons.py -------------------------------------------------------------------------------- /p3/management/commands/create_coupon_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/create_coupon_batch.py -------------------------------------------------------------------------------- /p3/management/commands/create_speaker_coupons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/create_speaker_coupons.py -------------------------------------------------------------------------------- /p3/management/commands/create_trainer_training_pass_coupons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/create_trainer_training_pass_coupons.py -------------------------------------------------------------------------------- /p3/management/commands/delete_spam_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/delete_spam_users.py -------------------------------------------------------------------------------- /p3/management/commands/get_attendees_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/get_attendees_csv.py -------------------------------------------------------------------------------- /p3/management/commands/guidebook_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/guidebook_csv.py -------------------------------------------------------------------------------- /p3/management/commands/partner_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/partner_events.py -------------------------------------------------------------------------------- /p3/management/commands/send_talk_verification_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/send_talk_verification_email.py -------------------------------------------------------------------------------- /p3/management/commands/speaker_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/speaker_list.py -------------------------------------------------------------------------------- /p3/management/commands/speakers_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/speakers_csv.py -------------------------------------------------------------------------------- /p3/management/commands/sync_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/sync_profiles.py -------------------------------------------------------------------------------- /p3/management/commands/talk_abstracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/talk_abstracts.py -------------------------------------------------------------------------------- /p3/management/commands/ticket_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/ticket_list.py -------------------------------------------------------------------------------- /p3/management/commands/ticket_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/ticket_profiles.py -------------------------------------------------------------------------------- /p3/management/commands/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/users.py -------------------------------------------------------------------------------- /p3/management/commands/users_with_unassigned_tickets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/users_with_unassigned_tickets.py -------------------------------------------------------------------------------- /p3/management/commands/video_schedule_xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/management/commands/video_schedule_xlsx.py -------------------------------------------------------------------------------- /p3/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/migrations/0001_initial.py -------------------------------------------------------------------------------- /p3/migrations/0002_remove_unused_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/migrations/0002_remove_unused_models.py -------------------------------------------------------------------------------- /p3/migrations/0003_add_name_field_to_ticket_conference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/migrations/0003_add_name_field_to_ticket_conference.py -------------------------------------------------------------------------------- /p3/migrations/0004_mystery_migrations_maybe_2_to_3_bytes_to_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/migrations/0004_mystery_migrations_maybe_2_to_3_bytes_to_str.py -------------------------------------------------------------------------------- /p3/migrations/0005_auto_shirt_and_dietary_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/migrations/0005_auto_shirt_and_dietary_defaults.py -------------------------------------------------------------------------------- /p3/migrations/0006_remove_p3talk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/migrations/0006_remove_p3talk.py -------------------------------------------------------------------------------- /p3/migrations/0007_auto_20200217_1654.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/migrations/0007_auto_20200217_1654.py -------------------------------------------------------------------------------- /p3/migrations/0008_remove_ticketconference_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/migrations/0008_remove_ticketconference_name.py -------------------------------------------------------------------------------- /p3/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p3/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/models.py -------------------------------------------------------------------------------- /p3/static/p5/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/static/p5/images/close.png -------------------------------------------------------------------------------- /p3/static/p5/images/headshot-default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/static/p5/images/headshot-default.jpg -------------------------------------------------------------------------------- /p3/static/p6/javascripts/ckeditor.wysiwyg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/static/p6/javascripts/ckeditor.wysiwyg.js -------------------------------------------------------------------------------- /p3/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/stats.py -------------------------------------------------------------------------------- /p3/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /p3/templatetags/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/templatetags/meta.py -------------------------------------------------------------------------------- /p3/templatetags/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/templatetags/sessions.py -------------------------------------------------------------------------------- /p3/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/urls.py -------------------------------------------------------------------------------- /p3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/utils.py -------------------------------------------------------------------------------- /p3/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/p3/views.py -------------------------------------------------------------------------------- /pycon/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /pycon/ci_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/pycon/ci_settings.py -------------------------------------------------------------------------------- /pycon/dev_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/pycon/dev_settings.py -------------------------------------------------------------------------------- /pycon/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/pycon/settings.py -------------------------------------------------------------------------------- /pycon/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/pycon/test_settings.py -------------------------------------------------------------------------------- /pycon/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/pycon/urls.py -------------------------------------------------------------------------------- /pycon/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/pycon/wsgi.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/pytest.ini -------------------------------------------------------------------------------- /pytest_ci.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/pytest_ci.ini -------------------------------------------------------------------------------- /requirements-dev.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/requirements-dev.in -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /scripts/fix_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/scripts/fix_names.py -------------------------------------------------------------------------------- /scripts/restore_epstage_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/scripts/restore_epstage_data.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/setup.cfg -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/500.html -------------------------------------------------------------------------------- /templates/admin/assopy/invoice/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/assopy/invoice/change_form.html -------------------------------------------------------------------------------- /templates/admin/assopy/order/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/assopy/order/change_form.html -------------------------------------------------------------------------------- /templates/admin/assopy/order/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/assopy/order/change_list.html -------------------------------------------------------------------------------- /templates/admin/auth/user/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/auth/user/change_form.html -------------------------------------------------------------------------------- /templates/admin/auth/user/new_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/auth/user/new_order.html -------------------------------------------------------------------------------- /templates/admin/conference/conference/attendee_stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/conference/conference/attendee_stats.html -------------------------------------------------------------------------------- /templates/admin/conference/conference/attendee_stats_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/conference/conference/attendee_stats_details.html -------------------------------------------------------------------------------- /templates/admin/conference/conference/schedule_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/conference/conference/schedule_view.html -------------------------------------------------------------------------------- /templates/admin/conference/conference/schedule_view_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/conference/conference/schedule_view_base.html -------------------------------------------------------------------------------- /templates/admin/conference/conference/schedule_view_schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/conference/conference/schedule_view_schedule.html -------------------------------------------------------------------------------- /templates/admin/conference/conferencetag/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/conference/conferencetag/change_form.html -------------------------------------------------------------------------------- /templates/admin/conference/conferencetag/merge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/conference/conferencetag/merge.html -------------------------------------------------------------------------------- /templates/admin/conference/schedule/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/conference/schedule/change_form.html -------------------------------------------------------------------------------- /templates/admin/conference/schedule/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/conference/schedule/change_list.html -------------------------------------------------------------------------------- /templates/admin/conference/speaker/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/conference/speaker/change_list.html -------------------------------------------------------------------------------- /templates/admin/conference/speaker/stats_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/conference/speaker/stats_list.html -------------------------------------------------------------------------------- /templates/admin/conference/ticket/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/conference/ticket/change_form.html -------------------------------------------------------------------------------- /templates/admin/conference/ticket/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/conference/ticket/change_list.html -------------------------------------------------------------------------------- /templates/admin/inc/extrahead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/admin/inc/extrahead.html -------------------------------------------------------------------------------- /templates/assopy/admin/edit_invoices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/assopy/admin/edit_invoices.html -------------------------------------------------------------------------------- /templates/assopy/admin/order_stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/assopy/admin/order_stats.html -------------------------------------------------------------------------------- /templates/assopy/invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/assopy/invoice.html -------------------------------------------------------------------------------- /templates/assopy/invoices/_additional_text_for_2018.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/assopy/invoices/_additional_text_for_2018.html -------------------------------------------------------------------------------- /templates/assopy/invoices/_additional_text_for_2019.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/assopy/invoices/_additional_text_for_2019.html -------------------------------------------------------------------------------- /templates/assopy/invoices/_additional_text_for_2020.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/assopy/invoices/_additional_text_for_2020.html -------------------------------------------------------------------------------- /templates/assopy/invoices/_additional_text_for_2021.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/assopy/invoices/_additional_text_for_2021.html -------------------------------------------------------------------------------- /templates/assopy/invoices/_additional_text_for_2022.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/assopy/invoices/_additional_text_for_2022.html -------------------------------------------------------------------------------- /templates/cmsplugin_filer_image/plugins/image/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/cmsplugin_filer_image/plugins/image/default.html -------------------------------------------------------------------------------- /templates/conference/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/README -------------------------------------------------------------------------------- /templates/conference/_cookie_consent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/_cookie_consent.html -------------------------------------------------------------------------------- /templates/conference/_googleanalytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/_googleanalytics.html -------------------------------------------------------------------------------- /templates/conference/accounts/_login_with_google.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/accounts/_login_with_google.html -------------------------------------------------------------------------------- /templates/conference/accounts/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/accounts/login.html -------------------------------------------------------------------------------- /templates/conference/accounts/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/accounts/password_reset.html -------------------------------------------------------------------------------- /templates/conference/accounts/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/accounts/password_reset_complete.html -------------------------------------------------------------------------------- /templates/conference/accounts/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/accounts/password_reset_confirm.html -------------------------------------------------------------------------------- /templates/conference/accounts/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/accounts/password_reset_done.html -------------------------------------------------------------------------------- /templates/conference/accounts/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/accounts/signup.html -------------------------------------------------------------------------------- /templates/conference/accounts/signup_please_verify_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/accounts/signup_please_verify_email.html -------------------------------------------------------------------------------- /templates/conference/admin/schedule_event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/admin/schedule_event.html -------------------------------------------------------------------------------- /templates/conference/admin/schedule_tracks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/admin/schedule_tracks.html -------------------------------------------------------------------------------- /templates/conference/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/base.html -------------------------------------------------------------------------------- /templates/conference/cart/_order_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/cart/_order_summary.html -------------------------------------------------------------------------------- /templates/conference/cart/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/cart/base.html -------------------------------------------------------------------------------- /templates/conference/cart/step_1_choose_type_of_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/cart/step_1_choose_type_of_order.html -------------------------------------------------------------------------------- /templates/conference/cart/step_2_pick_tickets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/cart/step_2_pick_tickets.html -------------------------------------------------------------------------------- /templates/conference/cart/step_3_add_billing_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/cart/step_3_add_billing_info.html -------------------------------------------------------------------------------- /templates/conference/cart/step_4_payment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/cart/step_4_payment.html -------------------------------------------------------------------------------- /templates/conference/cart/step_5_congrats_order_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/cart/step_5_congrats_order_complete.html -------------------------------------------------------------------------------- /templates/conference/cfp/_steps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/cfp/_steps.html -------------------------------------------------------------------------------- /templates/conference/cfp/cfp_is_closed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/cfp/cfp_is_closed.html -------------------------------------------------------------------------------- /templates/conference/cfp/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/cfp/preview.html -------------------------------------------------------------------------------- /templates/conference/cfp/step1_talk_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/cfp/step1_talk_info.html -------------------------------------------------------------------------------- /templates/conference/cfp/step2_add_speaker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/cfp/step2_add_speaker.html -------------------------------------------------------------------------------- /templates/conference/cfp/step3_thanks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/cfp/step3_thanks.html -------------------------------------------------------------------------------- /templates/conference/cfp/update_proposal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/cfp/update_proposal.html -------------------------------------------------------------------------------- /templates/conference/cfp/update_speakers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/cfp/update_speakers.html -------------------------------------------------------------------------------- /templates/conference/conference/talk_social_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/conference/talk_social_card.html -------------------------------------------------------------------------------- /templates/conference/content/_breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/content/_breadcrumbs.html -------------------------------------------------------------------------------- /templates/conference/content/_breadcrumbs_bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/content/_breadcrumbs_bar.html -------------------------------------------------------------------------------- /templates/conference/content/_breadcrumbs_no_active.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/content/_breadcrumbs_no_active.html -------------------------------------------------------------------------------- /templates/conference/content/_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/content/_menu.html -------------------------------------------------------------------------------- /templates/conference/content/_messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/content/_messages.html -------------------------------------------------------------------------------- /templates/conference/content/content_only_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/content/content_only_page.html -------------------------------------------------------------------------------- /templates/conference/content/generic_content_page_with_sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/content/generic_content_page_with_sidebar.html -------------------------------------------------------------------------------- /templates/conference/content/wide_content_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/content/wide_content_page.html -------------------------------------------------------------------------------- /templates/conference/debugpanel/fares_setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/debugpanel/fares_setup.html -------------------------------------------------------------------------------- /templates/conference/debugpanel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/debugpanel/index.html -------------------------------------------------------------------------------- /templates/conference/debugpanel/invoice_placeholders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/debugpanel/invoice_placeholders.html -------------------------------------------------------------------------------- /templates/conference/debugpanel/invoices_export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/debugpanel/invoices_export.html -------------------------------------------------------------------------------- /templates/conference/debugpanel/reissue_invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/debugpanel/reissue_invoice.html -------------------------------------------------------------------------------- /templates/conference/emails/order_confirmation_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/emails/order_confirmation_email.txt -------------------------------------------------------------------------------- /templates/conference/emails/password_reset_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/emails/password_reset_email.txt -------------------------------------------------------------------------------- /templates/conference/emails/password_reset_subject.txt: -------------------------------------------------------------------------------- 1 | EuroPython 2021: Reset password link 2 | -------------------------------------------------------------------------------- /templates/conference/emails/signup_verification_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/emails/signup_verification_email.txt -------------------------------------------------------------------------------- /templates/conference/footer/_show_menu_in_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/footer/_show_menu_in_footer.html -------------------------------------------------------------------------------- /templates/conference/footer/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/footer/footer.html -------------------------------------------------------------------------------- /templates/conference/header/_homepage_jumbotron.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/header/_homepage_jumbotron.html -------------------------------------------------------------------------------- /templates/conference/header/_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/header/_nav.html -------------------------------------------------------------------------------- /templates/conference/header/_nav_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/header/_nav_menu.html -------------------------------------------------------------------------------- /templates/conference/header/_regular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/header/_regular.html -------------------------------------------------------------------------------- /templates/conference/header/_with_jumbotron.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/header/_with_jumbotron.html -------------------------------------------------------------------------------- /templates/conference/homepage.html: -------------------------------------------------------------------------------- 1 | {% extends "conference/base.html" %} 2 | -------------------------------------------------------------------------------- /templates/conference/homepage/_schedule_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/homepage/_schedule_overview.html -------------------------------------------------------------------------------- /templates/conference/homepage/_sponsors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/homepage/_sponsors.html -------------------------------------------------------------------------------- /templates/conference/homepage/_venue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/homepage/_venue.html -------------------------------------------------------------------------------- /templates/conference/homepage/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/homepage/home.html -------------------------------------------------------------------------------- /templates/conference/homepage/home_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/homepage/home_template.html -------------------------------------------------------------------------------- /templates/conference/news/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/news/list.html -------------------------------------------------------------------------------- /templates/conference/profiles/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/profiles/profile.html -------------------------------------------------------------------------------- /templates/conference/profiles/profile_unavailable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/profiles/profile_unavailable.html -------------------------------------------------------------------------------- /templates/conference/schedule/schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/schedule/schedule.html -------------------------------------------------------------------------------- /templates/conference/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/signup.html -------------------------------------------------------------------------------- /templates/conference/talk_voting/_voting_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/talk_voting/_voting_form.html -------------------------------------------------------------------------------- /templates/conference/talk_voting/voting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/talk_voting/voting.html -------------------------------------------------------------------------------- /templates/conference/talk_voting/voting_is_closed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/talk_voting/voting_is_closed.html -------------------------------------------------------------------------------- /templates/conference/talk_voting/voting_is_unavailable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/talk_voting/voting_is_unavailable.html -------------------------------------------------------------------------------- /templates/conference/talks/talk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/talks/talk.html -------------------------------------------------------------------------------- /templates/conference/talks/update_talk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/talks/update_talk.html -------------------------------------------------------------------------------- /templates/conference/user_panel/_invoices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/user_panel/_invoices.html -------------------------------------------------------------------------------- /templates/conference/user_panel/_orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/user_panel/_orders.html -------------------------------------------------------------------------------- /templates/conference/user_panel/_proposals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/user_panel/_proposals.html -------------------------------------------------------------------------------- /templates/conference/user_panel/_tickets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/user_panel/_tickets.html -------------------------------------------------------------------------------- /templates/conference/user_panel/assign_ticket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/user_panel/assign_ticket.html -------------------------------------------------------------------------------- /templates/conference/user_panel/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/user_panel/base.html -------------------------------------------------------------------------------- /templates/conference/user_panel/configure_ticket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/user_panel/configure_ticket.html -------------------------------------------------------------------------------- /templates/conference/user_panel/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/user_panel/dashboard.html -------------------------------------------------------------------------------- /templates/conference/user_panel/forms/privacy_settings_recruiting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/user_panel/forms/privacy_settings_recruiting.html -------------------------------------------------------------------------------- /templates/conference/user_panel/forms/privacy_settings_sms_messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/user_panel/forms/privacy_settings_sms_messages.html -------------------------------------------------------------------------------- /templates/conference/user_panel/forms/privacy_settings_user_messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/user_panel/forms/privacy_settings_user_messages.html -------------------------------------------------------------------------------- /templates/conference/user_panel/forms/profile_settings_picture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/user_panel/forms/profile_settings_picture.html -------------------------------------------------------------------------------- /templates/conference/user_panel/password_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/user_panel/password_change.html -------------------------------------------------------------------------------- /templates/conference/user_panel/password_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/user_panel/password_change_done.html -------------------------------------------------------------------------------- /templates/conference/user_panel/privacy_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/user_panel/privacy_settings.html -------------------------------------------------------------------------------- /templates/conference/user_panel/profile_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/conference/user_panel/profile_settings.html -------------------------------------------------------------------------------- /templates/ep19/bs/content/generic_content_page_with_sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/ep19/bs/content/generic_content_page_with_sidebar.html -------------------------------------------------------------------------------- /templates/p3/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/templates/p3/admin/index.html -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/common_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/common_tools.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/factories.py -------------------------------------------------------------------------------- /tests/test_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_accounts.py -------------------------------------------------------------------------------- /tests/test_assopy_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_assopy_admin.py -------------------------------------------------------------------------------- /tests/test_assopy_templates_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_assopy_templates_paths.py -------------------------------------------------------------------------------- /tests/test_assopy_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_assopy_user.py -------------------------------------------------------------------------------- /tests/test_attendeeprofiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_attendeeprofiles.py -------------------------------------------------------------------------------- /tests/test_avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_avatar.py -------------------------------------------------------------------------------- /tests/test_cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_cart.py -------------------------------------------------------------------------------- /tests/test_cfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_cfp.py -------------------------------------------------------------------------------- /tests/test_change_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_change_password.py -------------------------------------------------------------------------------- /tests/test_cmsplugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_cmsplugins.py -------------------------------------------------------------------------------- /tests/test_conference_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_conference_admin.py -------------------------------------------------------------------------------- /tests/test_debugpanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_debugpanel.py -------------------------------------------------------------------------------- /tests/test_exchangerates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_exchangerates.py -------------------------------------------------------------------------------- /tests/test_homepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_homepage.py -------------------------------------------------------------------------------- /tests/test_invoices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_invoices.py -------------------------------------------------------------------------------- /tests/test_management_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_management_commands.py -------------------------------------------------------------------------------- /tests/test_matrix_auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_matrix_auth_api.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_new_talk_voting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_new_talk_voting.py -------------------------------------------------------------------------------- /tests/test_p3_templatetags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_p3_templatetags.py -------------------------------------------------------------------------------- /tests/test_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_profile.py -------------------------------------------------------------------------------- /tests/test_provisioning_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_provisioning_script.py -------------------------------------------------------------------------------- /tests/test_reset_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_reset_password.py -------------------------------------------------------------------------------- /tests/test_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_schedule.py -------------------------------------------------------------------------------- /tests/test_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_stats.py -------------------------------------------------------------------------------- /tests/test_streamset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_streamset.py -------------------------------------------------------------------------------- /tests/test_talk_voting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_talk_voting.py -------------------------------------------------------------------------------- /tests/test_talks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_talks.py -------------------------------------------------------------------------------- /tests/test_user_login_and_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_user_login_and_registration.py -------------------------------------------------------------------------------- /tests/test_user_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EuroPython/epcon/HEAD/tests/test_user_panel.py --------------------------------------------------------------------------------