├── .gitignore ├── .hgignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── Procfile ├── Procfile.dev ├── README.md ├── accounts ├── __init__.py ├── admin.py ├── exceptions.py ├── factories.py ├── forms.py ├── managers.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_remove_userprofile_is_authenticated.py │ ├── 0003_userprofile_is_staff.py │ ├── 0004_auto_20151013_2134.py │ ├── 0005_auto_20151103_2237.py │ ├── 0006_userprofile_reputation.py │ ├── 0007_auto_20151107_0037.py │ ├── 0008_userprofile_web_site.py │ ├── 0009_userprofile_avatar.py │ ├── 0010_auto_20160219_0043.py │ ├── 0011_remove_userprofile_avatarurl.py │ ├── 0012_auto_20160223_2142.py │ ├── 0013_auto_20160224_1548.py │ ├── 0014_auto_20160224_2336.py │ ├── 0015_auto_20160227_0157.py │ ├── 0016_auto_20160408_2259.py │ ├── 0017_auto_20160420_0155.py │ ├── 0018_userprofile_active_date.py │ ├── 0019_auto_20160518_0048.py │ ├── 0020_userprofile_last_transaction.py │ ├── 0021_auto_20161107_2217.py │ ├── 0022_auto_20170427_1932.py │ ├── 0023_auto_20170517_1237.py │ ├── 0024_auto_20170531_0031.py │ ├── 0025_teamaccesskey.py │ └── __init__.py ├── models.py ├── pipeline.py ├── tasks.py ├── templatetags │ ├── __init__.py │ └── user.py ├── tests.py ├── urls.py ├── utils.py └── views.py ├── bladepolska ├── __init__.py ├── admin.py ├── context_processors.py ├── dirs.py ├── fields.py ├── http.py ├── lists.py ├── log.py ├── middleware.py ├── pubnub.py ├── query_helpers.py ├── redis_connection.py ├── rest.py ├── serializers.py ├── site.py ├── snapshots.py ├── sql.py └── templatetags │ ├── __init__.py │ ├── absolute_url_to_file.py │ ├── canvas_relative_url.py │ └── jsonify.py ├── cms ├── __init__.py ├── admin.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20170521_1755.py │ ├── 0003_auto_20170602_1623.py │ ├── 0004_auto_20170830_1553.py │ └── __init__.py ├── models.py ├── templatetags │ ├── __init__.py │ └── pages.py ├── urls.py └── views.py ├── db_dumps ├── db_anonymize.sql ├── db_anonymize_and_dump.sh ├── db_copy_from_prod_to_staging.sh ├── db_dump_from_heroku.sh ├── db_restore_dump.sh └── local_test_data.json ├── deploy_statics.sh ├── docker-compose.yml ├── events ├── __init__.py ├── admin.py ├── api.py ├── elo.py ├── exceptions.py ├── factories.py ├── forms.py ├── managers.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20151107_0037.py │ ├── 0003_auto_20160202_1906.py │ ├── 0004_bet_is_new_resolved.py │ ├── 0005_event_outcome_reason.py │ ├── 0006_relatedevent.py │ ├── 0007_auto_20160214_1750.py │ ├── 0008_auto_20160330_1315.py │ ├── 0009_auto_20160504_0205.py │ ├── 0010_auto_20160516_1807.py │ ├── 0011_auto_20160518_1204.py │ ├── 0012_auto_20160525_1901.py │ ├── 0013_auto_20160607_1554.py │ ├── 0014_remove_event_is_front.py │ ├── 0015_auto_20160615_1514.py │ ├── 0016_auto_20160625_2158.py │ ├── 0017_auto_20160824_2357.py │ ├── 0018_auto_20161004_2009.py │ ├── 0019_auto_20170321_2250.py │ ├── 0020_auto_20170331_1201.py │ ├── 0021_auto_20170427_1932.py │ ├── 0022_auto_20170521_1755.py │ ├── 0023_auto_20170523_1251.py │ ├── 0024_auto_20170601_0154.py │ ├── 0025_auto_20170601_0239.py │ ├── 0026_added_TeamResult_model__added_field_to_bet.py │ └── __init__.py ├── models.py ├── search_indexes.py ├── search_sites.py ├── serializers.py ├── signalprocessors.py ├── tasks.py ├── templatetags │ ├── __init__.py │ ├── display.py │ └── iframe.py ├── tests.py ├── urls.py └── views.py ├── locale ├── lt │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po └── pl │ └── LC_MESSAGES │ ├── django.mo │ └── django.po ├── manage.py ├── politikon ├── __init__.py ├── api.py ├── context_processors.py ├── decorators.py ├── forms.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── politikon_reset_accounts.py │ │ └── reset_results_and_transactions.py ├── middleware.py ├── pagination.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── dev.py │ ├── local.py │ ├── production.py │ └── test.py ├── tasks.py ├── templatetags │ ├── __init__.py │ ├── format.py │ ├── modals.py │ └── path.py ├── tests.py ├── urls.py ├── utils.py ├── views.py └── wsgi.py ├── renew_certificate_from_letsencrypt.md ├── requirements.txt ├── runtime.txt ├── setup.cfg ├── src └── pip-delete-this-directory.txt ├── static ├── css │ ├── introjs.min.css │ ├── jquery.jscrollpane.css │ ├── rwd.css │ └── style.css ├── img │ ├── 00bg.png │ ├── 00burger.png │ ├── 00logo-politikon.png │ ├── 00socialmedia.png │ ├── 01figurebg.png │ ├── 01hotbg.jpg │ ├── 01hoticon.png │ ├── 02reputysmall.png │ ├── Loading_icon.gif │ ├── avatar-small.png │ ├── avatar.png │ ├── bet-plain.jpg │ ├── bet-small.jpg │ ├── bet-status.png │ ├── blank-avatar.jpg │ ├── featured.jpg │ ├── flags │ │ ├── en.png │ │ ├── lt.png │ │ └── pl.png │ ├── footer-bg.jpg │ ├── footer-logo-politikon.png │ ├── footer-socialmedia.png │ ├── load.gif │ ├── login-close.png │ ├── login-line.png │ ├── login-logo-politikon.png │ ├── login-socialmedia.png │ ├── logo-big.png │ ├── man.png │ ├── partners │ │ ├── erasmus-plus-duze.png │ │ ├── erasmus-plus-gray.png │ │ ├── erasmus-plus.png │ │ ├── footer-logo-kdp.png │ │ ├── footer-logo-kj.png │ │ ├── kdp-duze-gray.png │ │ ├── kdp-duze.png │ │ ├── kj-duze.png │ │ └── kj.png │ ├── rank-icons.png │ ├── reload.png │ ├── rss-plain.jpg │ ├── search-loop.png │ ├── settings-avatar.png │ ├── share-icon-2.png │ ├── share-icon.png │ ├── sm-plain.png │ ├── sm-small.png │ ├── time.png │ ├── userstats.png │ ├── wallet-top.png │ ├── www-icon-small.png │ └── www-icon.png ├── js │ ├── Chart.min.js │ ├── actions.js │ ├── api.js │ ├── charts │ │ ├── betfeed_featured.js │ │ ├── details.js │ │ ├── profile.js │ │ └── ranking.js │ ├── guest.js │ ├── intro │ │ ├── intro.min.js │ │ ├── scenario-details.js │ │ ├── scenario-guest.js │ │ ├── scenario-profile.js │ │ ├── scenario-rank-user.js │ │ ├── scenario-rank.js │ │ ├── scenario-settings.js │ │ ├── scenario-user.js │ │ ├── scenario-wallet.js │ │ └── scenario-wydarzenia.js │ ├── jquery-1.12.4.min.js │ ├── jquery.dotdotdot.min.js │ ├── jquery.jscrollpane.min.js │ ├── jquery.mousewheel.js │ ├── locale │ │ ├── en.js │ │ ├── lt.js │ │ └── pl.js │ ├── loggedin.js │ ├── noty │ │ ├── jquery.noty.js │ │ ├── layouts │ │ │ ├── bottom.js │ │ │ ├── bottomCenter.js │ │ │ ├── bottomLeft.js │ │ │ ├── bottomRight.js │ │ │ ├── center.js │ │ │ ├── centerLeft.js │ │ │ ├── centerRight.js │ │ │ ├── inline.js │ │ │ ├── top.js │ │ │ ├── topCenter.js │ │ │ ├── topLeft.js │ │ │ └── topRight.js │ │ ├── packaged │ │ │ ├── jquery.noty.packaged.js │ │ │ └── jquery.noty.packaged.min.js │ │ ├── promise.js │ │ └── themes │ │ │ ├── bootstrap.js │ │ │ ├── default.js │ │ │ └── relax.js │ ├── scroll-startstop.events.jquery.js │ ├── staff.js │ ├── walidacja │ │ └── parsley.min.js │ └── waypoints │ │ ├── infinite.js │ │ ├── infinite.min.js │ │ ├── jquery.waypoints.js │ │ ├── jquery.waypoints.min.js │ │ └── waypoints.debug.js └── uploads │ └── documents │ ├── Polityka_prywatnosci.pdf │ └── Regulamin_serwisu_Politikon.pdf ├── stunnel.conf ├── templates ├── TODO_to_remove_base.html ├── accounts │ ├── groups.html │ ├── notifications.html │ ├── portfolio.html │ ├── rank.html │ ├── team_rank.html │ ├── transactions.html │ ├── user_detail.html │ ├── user_home.html │ ├── user_notifications.html │ ├── user_portfolio.html │ ├── user_rank.html │ ├── user_settings.html │ ├── user_stats.html │ ├── user_transactions.html │ ├── userprofile_detail.html │ └── userprofile_form.html ├── base.html ├── canvas │ └── home.html ├── cms │ ├── admin │ │ └── change_form.html │ ├── page_detail.html │ └── pages_menu.html ├── contact.html ├── events │ ├── admin │ │ └── change_form.html │ ├── event_create.html │ ├── event_detail.html │ ├── event_embed_detail.html │ ├── events.html │ ├── facebook_event_detail.html │ ├── finish_date.html │ ├── og_title.html │ ├── render_bet.html │ ├── render_bet_status.html │ ├── render_events.html │ ├── render_featured_event.html │ └── render_featured_events.html ├── home.html ├── iframes │ └── iframe-small.html ├── language-bar.html ├── logged_in.html ├── macros.html ├── modals │ ├── all.html │ ├── anonymous.html │ ├── any.html │ ├── authenticated.html │ └── staff.html ├── not_logged_in.html ├── registration │ └── login.html └── search │ ├── indexes │ └── events │ │ └── event_text.txt │ └── search.html └── vendor ├── Pubnub.py └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/.hgignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/Procfile -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/README.md -------------------------------------------------------------------------------- /accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/admin.py -------------------------------------------------------------------------------- /accounts/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/exceptions.py -------------------------------------------------------------------------------- /accounts/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/factories.py -------------------------------------------------------------------------------- /accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/forms.py -------------------------------------------------------------------------------- /accounts/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/managers.py -------------------------------------------------------------------------------- /accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /accounts/migrations/0002_remove_userprofile_is_authenticated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0002_remove_userprofile_is_authenticated.py -------------------------------------------------------------------------------- /accounts/migrations/0003_userprofile_is_staff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0003_userprofile_is_staff.py -------------------------------------------------------------------------------- /accounts/migrations/0004_auto_20151013_2134.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0004_auto_20151013_2134.py -------------------------------------------------------------------------------- /accounts/migrations/0005_auto_20151103_2237.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0005_auto_20151103_2237.py -------------------------------------------------------------------------------- /accounts/migrations/0006_userprofile_reputation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0006_userprofile_reputation.py -------------------------------------------------------------------------------- /accounts/migrations/0007_auto_20151107_0037.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0007_auto_20151107_0037.py -------------------------------------------------------------------------------- /accounts/migrations/0008_userprofile_web_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0008_userprofile_web_site.py -------------------------------------------------------------------------------- /accounts/migrations/0009_userprofile_avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0009_userprofile_avatar.py -------------------------------------------------------------------------------- /accounts/migrations/0010_auto_20160219_0043.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0010_auto_20160219_0043.py -------------------------------------------------------------------------------- /accounts/migrations/0011_remove_userprofile_avatarurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0011_remove_userprofile_avatarurl.py -------------------------------------------------------------------------------- /accounts/migrations/0012_auto_20160223_2142.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0012_auto_20160223_2142.py -------------------------------------------------------------------------------- /accounts/migrations/0013_auto_20160224_1548.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0013_auto_20160224_1548.py -------------------------------------------------------------------------------- /accounts/migrations/0014_auto_20160224_2336.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0014_auto_20160224_2336.py -------------------------------------------------------------------------------- /accounts/migrations/0015_auto_20160227_0157.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0015_auto_20160227_0157.py -------------------------------------------------------------------------------- /accounts/migrations/0016_auto_20160408_2259.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0016_auto_20160408_2259.py -------------------------------------------------------------------------------- /accounts/migrations/0017_auto_20160420_0155.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0017_auto_20160420_0155.py -------------------------------------------------------------------------------- /accounts/migrations/0018_userprofile_active_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0018_userprofile_active_date.py -------------------------------------------------------------------------------- /accounts/migrations/0019_auto_20160518_0048.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0019_auto_20160518_0048.py -------------------------------------------------------------------------------- /accounts/migrations/0020_userprofile_last_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0020_userprofile_last_transaction.py -------------------------------------------------------------------------------- /accounts/migrations/0021_auto_20161107_2217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0021_auto_20161107_2217.py -------------------------------------------------------------------------------- /accounts/migrations/0022_auto_20170427_1932.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0022_auto_20170427_1932.py -------------------------------------------------------------------------------- /accounts/migrations/0023_auto_20170517_1237.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0023_auto_20170517_1237.py -------------------------------------------------------------------------------- /accounts/migrations/0024_auto_20170531_0031.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0024_auto_20170531_0031.py -------------------------------------------------------------------------------- /accounts/migrations/0025_teamaccesskey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/migrations/0025_teamaccesskey.py -------------------------------------------------------------------------------- /accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/models.py -------------------------------------------------------------------------------- /accounts/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/pipeline.py -------------------------------------------------------------------------------- /accounts/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/tasks.py -------------------------------------------------------------------------------- /accounts/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/templatetags/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/templatetags/user.py -------------------------------------------------------------------------------- /accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/tests.py -------------------------------------------------------------------------------- /accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/urls.py -------------------------------------------------------------------------------- /accounts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/utils.py -------------------------------------------------------------------------------- /accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/accounts/views.py -------------------------------------------------------------------------------- /bladepolska/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/__init__.py -------------------------------------------------------------------------------- /bladepolska/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/admin.py -------------------------------------------------------------------------------- /bladepolska/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/context_processors.py -------------------------------------------------------------------------------- /bladepolska/dirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/dirs.py -------------------------------------------------------------------------------- /bladepolska/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/fields.py -------------------------------------------------------------------------------- /bladepolska/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/http.py -------------------------------------------------------------------------------- /bladepolska/lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/lists.py -------------------------------------------------------------------------------- /bladepolska/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/log.py -------------------------------------------------------------------------------- /bladepolska/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/middleware.py -------------------------------------------------------------------------------- /bladepolska/pubnub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/pubnub.py -------------------------------------------------------------------------------- /bladepolska/query_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/query_helpers.py -------------------------------------------------------------------------------- /bladepolska/redis_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/redis_connection.py -------------------------------------------------------------------------------- /bladepolska/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/rest.py -------------------------------------------------------------------------------- /bladepolska/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/serializers.py -------------------------------------------------------------------------------- /bladepolska/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/site.py -------------------------------------------------------------------------------- /bladepolska/snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/snapshots.py -------------------------------------------------------------------------------- /bladepolska/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/sql.py -------------------------------------------------------------------------------- /bladepolska/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bladepolska/templatetags/absolute_url_to_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/templatetags/absolute_url_to_file.py -------------------------------------------------------------------------------- /bladepolska/templatetags/canvas_relative_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/templatetags/canvas_relative_url.py -------------------------------------------------------------------------------- /bladepolska/templatetags/jsonify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/bladepolska/templatetags/jsonify.py -------------------------------------------------------------------------------- /cms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cms/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/cms/admin.py -------------------------------------------------------------------------------- /cms/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/cms/migrations/0001_initial.py -------------------------------------------------------------------------------- /cms/migrations/0002_auto_20170521_1755.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/cms/migrations/0002_auto_20170521_1755.py -------------------------------------------------------------------------------- /cms/migrations/0003_auto_20170602_1623.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/cms/migrations/0003_auto_20170602_1623.py -------------------------------------------------------------------------------- /cms/migrations/0004_auto_20170830_1553.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/cms/migrations/0004_auto_20170830_1553.py -------------------------------------------------------------------------------- /cms/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cms/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/cms/models.py -------------------------------------------------------------------------------- /cms/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cms/templatetags/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/cms/templatetags/pages.py -------------------------------------------------------------------------------- /cms/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/cms/urls.py -------------------------------------------------------------------------------- /cms/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/cms/views.py -------------------------------------------------------------------------------- /db_dumps/db_anonymize.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/db_dumps/db_anonymize.sql -------------------------------------------------------------------------------- /db_dumps/db_anonymize_and_dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/db_dumps/db_anonymize_and_dump.sh -------------------------------------------------------------------------------- /db_dumps/db_copy_from_prod_to_staging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/db_dumps/db_copy_from_prod_to_staging.sh -------------------------------------------------------------------------------- /db_dumps/db_dump_from_heroku.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/db_dumps/db_dump_from_heroku.sh -------------------------------------------------------------------------------- /db_dumps/db_restore_dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/db_dumps/db_restore_dump.sh -------------------------------------------------------------------------------- /db_dumps/local_test_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/db_dumps/local_test_data.json -------------------------------------------------------------------------------- /deploy_statics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/deploy_statics.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /events/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/admin.py -------------------------------------------------------------------------------- /events/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/api.py -------------------------------------------------------------------------------- /events/elo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/elo.py -------------------------------------------------------------------------------- /events/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/exceptions.py -------------------------------------------------------------------------------- /events/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/factories.py -------------------------------------------------------------------------------- /events/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/forms.py -------------------------------------------------------------------------------- /events/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/managers.py -------------------------------------------------------------------------------- /events/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0001_initial.py -------------------------------------------------------------------------------- /events/migrations/0002_auto_20151107_0037.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0002_auto_20151107_0037.py -------------------------------------------------------------------------------- /events/migrations/0003_auto_20160202_1906.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0003_auto_20160202_1906.py -------------------------------------------------------------------------------- /events/migrations/0004_bet_is_new_resolved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0004_bet_is_new_resolved.py -------------------------------------------------------------------------------- /events/migrations/0005_event_outcome_reason.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0005_event_outcome_reason.py -------------------------------------------------------------------------------- /events/migrations/0006_relatedevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0006_relatedevent.py -------------------------------------------------------------------------------- /events/migrations/0007_auto_20160214_1750.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0007_auto_20160214_1750.py -------------------------------------------------------------------------------- /events/migrations/0008_auto_20160330_1315.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0008_auto_20160330_1315.py -------------------------------------------------------------------------------- /events/migrations/0009_auto_20160504_0205.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0009_auto_20160504_0205.py -------------------------------------------------------------------------------- /events/migrations/0010_auto_20160516_1807.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0010_auto_20160516_1807.py -------------------------------------------------------------------------------- /events/migrations/0011_auto_20160518_1204.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0011_auto_20160518_1204.py -------------------------------------------------------------------------------- /events/migrations/0012_auto_20160525_1901.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0012_auto_20160525_1901.py -------------------------------------------------------------------------------- /events/migrations/0013_auto_20160607_1554.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0013_auto_20160607_1554.py -------------------------------------------------------------------------------- /events/migrations/0014_remove_event_is_front.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0014_remove_event_is_front.py -------------------------------------------------------------------------------- /events/migrations/0015_auto_20160615_1514.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0015_auto_20160615_1514.py -------------------------------------------------------------------------------- /events/migrations/0016_auto_20160625_2158.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0016_auto_20160625_2158.py -------------------------------------------------------------------------------- /events/migrations/0017_auto_20160824_2357.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0017_auto_20160824_2357.py -------------------------------------------------------------------------------- /events/migrations/0018_auto_20161004_2009.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0018_auto_20161004_2009.py -------------------------------------------------------------------------------- /events/migrations/0019_auto_20170321_2250.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0019_auto_20170321_2250.py -------------------------------------------------------------------------------- /events/migrations/0020_auto_20170331_1201.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0020_auto_20170331_1201.py -------------------------------------------------------------------------------- /events/migrations/0021_auto_20170427_1932.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0021_auto_20170427_1932.py -------------------------------------------------------------------------------- /events/migrations/0022_auto_20170521_1755.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0022_auto_20170521_1755.py -------------------------------------------------------------------------------- /events/migrations/0023_auto_20170523_1251.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0023_auto_20170523_1251.py -------------------------------------------------------------------------------- /events/migrations/0024_auto_20170601_0154.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0024_auto_20170601_0154.py -------------------------------------------------------------------------------- /events/migrations/0025_auto_20170601_0239.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0025_auto_20170601_0239.py -------------------------------------------------------------------------------- /events/migrations/0026_added_TeamResult_model__added_field_to_bet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/migrations/0026_added_TeamResult_model__added_field_to_bet.py -------------------------------------------------------------------------------- /events/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /events/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/models.py -------------------------------------------------------------------------------- /events/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/search_indexes.py -------------------------------------------------------------------------------- /events/search_sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/search_sites.py -------------------------------------------------------------------------------- /events/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/serializers.py -------------------------------------------------------------------------------- /events/signalprocessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/signalprocessors.py -------------------------------------------------------------------------------- /events/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/tasks.py -------------------------------------------------------------------------------- /events/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /events/templatetags/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/templatetags/display.py -------------------------------------------------------------------------------- /events/templatetags/iframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/templatetags/iframe.py -------------------------------------------------------------------------------- /events/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/tests.py -------------------------------------------------------------------------------- /events/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/urls.py -------------------------------------------------------------------------------- /events/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/events/views.py -------------------------------------------------------------------------------- /locale/lt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/locale/lt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/lt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/locale/lt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/manage.py -------------------------------------------------------------------------------- /politikon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /politikon/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/api.py -------------------------------------------------------------------------------- /politikon/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/context_processors.py -------------------------------------------------------------------------------- /politikon/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/decorators.py -------------------------------------------------------------------------------- /politikon/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/forms.py -------------------------------------------------------------------------------- /politikon/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /politikon/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /politikon/management/commands/politikon_reset_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/management/commands/politikon_reset_accounts.py -------------------------------------------------------------------------------- /politikon/management/commands/reset_results_and_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/management/commands/reset_results_and_transactions.py -------------------------------------------------------------------------------- /politikon/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/middleware.py -------------------------------------------------------------------------------- /politikon/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/pagination.py -------------------------------------------------------------------------------- /politikon/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /politikon/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/settings/base.py -------------------------------------------------------------------------------- /politikon/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/settings/dev.py -------------------------------------------------------------------------------- /politikon/settings/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/settings/local.py -------------------------------------------------------------------------------- /politikon/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/settings/production.py -------------------------------------------------------------------------------- /politikon/settings/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/settings/test.py -------------------------------------------------------------------------------- /politikon/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/tasks.py -------------------------------------------------------------------------------- /politikon/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /politikon/templatetags/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/templatetags/format.py -------------------------------------------------------------------------------- /politikon/templatetags/modals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/templatetags/modals.py -------------------------------------------------------------------------------- /politikon/templatetags/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/templatetags/path.py -------------------------------------------------------------------------------- /politikon/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/tests.py -------------------------------------------------------------------------------- /politikon/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/urls.py -------------------------------------------------------------------------------- /politikon/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/utils.py -------------------------------------------------------------------------------- /politikon/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/views.py -------------------------------------------------------------------------------- /politikon/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/politikon/wsgi.py -------------------------------------------------------------------------------- /renew_certificate_from_letsencrypt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/renew_certificate_from_letsencrypt.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.11 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 100 3 | exclude = */migrations/* 4 | -------------------------------------------------------------------------------- /src/pip-delete-this-directory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/src/pip-delete-this-directory.txt -------------------------------------------------------------------------------- /static/css/introjs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/css/introjs.min.css -------------------------------------------------------------------------------- /static/css/jquery.jscrollpane.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/css/jquery.jscrollpane.css -------------------------------------------------------------------------------- /static/css/rwd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/css/rwd.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/img/00bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/00bg.png -------------------------------------------------------------------------------- /static/img/00burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/00burger.png -------------------------------------------------------------------------------- /static/img/00logo-politikon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/00logo-politikon.png -------------------------------------------------------------------------------- /static/img/00socialmedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/00socialmedia.png -------------------------------------------------------------------------------- /static/img/01figurebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/01figurebg.png -------------------------------------------------------------------------------- /static/img/01hotbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/01hotbg.jpg -------------------------------------------------------------------------------- /static/img/01hoticon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/01hoticon.png -------------------------------------------------------------------------------- /static/img/02reputysmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/02reputysmall.png -------------------------------------------------------------------------------- /static/img/Loading_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/Loading_icon.gif -------------------------------------------------------------------------------- /static/img/avatar-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/avatar-small.png -------------------------------------------------------------------------------- /static/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/avatar.png -------------------------------------------------------------------------------- /static/img/bet-plain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/bet-plain.jpg -------------------------------------------------------------------------------- /static/img/bet-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/bet-small.jpg -------------------------------------------------------------------------------- /static/img/bet-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/bet-status.png -------------------------------------------------------------------------------- /static/img/blank-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/blank-avatar.jpg -------------------------------------------------------------------------------- /static/img/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/featured.jpg -------------------------------------------------------------------------------- /static/img/flags/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/flags/en.png -------------------------------------------------------------------------------- /static/img/flags/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/flags/lt.png -------------------------------------------------------------------------------- /static/img/flags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/flags/pl.png -------------------------------------------------------------------------------- /static/img/footer-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/footer-bg.jpg -------------------------------------------------------------------------------- /static/img/footer-logo-politikon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/footer-logo-politikon.png -------------------------------------------------------------------------------- /static/img/footer-socialmedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/footer-socialmedia.png -------------------------------------------------------------------------------- /static/img/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/load.gif -------------------------------------------------------------------------------- /static/img/login-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/login-close.png -------------------------------------------------------------------------------- /static/img/login-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/login-line.png -------------------------------------------------------------------------------- /static/img/login-logo-politikon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/login-logo-politikon.png -------------------------------------------------------------------------------- /static/img/login-socialmedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/login-socialmedia.png -------------------------------------------------------------------------------- /static/img/logo-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/logo-big.png -------------------------------------------------------------------------------- /static/img/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/man.png -------------------------------------------------------------------------------- /static/img/partners/erasmus-plus-duze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/partners/erasmus-plus-duze.png -------------------------------------------------------------------------------- /static/img/partners/erasmus-plus-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/partners/erasmus-plus-gray.png -------------------------------------------------------------------------------- /static/img/partners/erasmus-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/partners/erasmus-plus.png -------------------------------------------------------------------------------- /static/img/partners/footer-logo-kdp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/partners/footer-logo-kdp.png -------------------------------------------------------------------------------- /static/img/partners/footer-logo-kj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/partners/footer-logo-kj.png -------------------------------------------------------------------------------- /static/img/partners/kdp-duze-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/partners/kdp-duze-gray.png -------------------------------------------------------------------------------- /static/img/partners/kdp-duze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/partners/kdp-duze.png -------------------------------------------------------------------------------- /static/img/partners/kj-duze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/partners/kj-duze.png -------------------------------------------------------------------------------- /static/img/partners/kj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/partners/kj.png -------------------------------------------------------------------------------- /static/img/rank-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/rank-icons.png -------------------------------------------------------------------------------- /static/img/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/reload.png -------------------------------------------------------------------------------- /static/img/rss-plain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/rss-plain.jpg -------------------------------------------------------------------------------- /static/img/search-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/search-loop.png -------------------------------------------------------------------------------- /static/img/settings-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/settings-avatar.png -------------------------------------------------------------------------------- /static/img/share-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/share-icon-2.png -------------------------------------------------------------------------------- /static/img/share-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/share-icon.png -------------------------------------------------------------------------------- /static/img/sm-plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/sm-plain.png -------------------------------------------------------------------------------- /static/img/sm-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/sm-small.png -------------------------------------------------------------------------------- /static/img/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/time.png -------------------------------------------------------------------------------- /static/img/userstats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/userstats.png -------------------------------------------------------------------------------- /static/img/wallet-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/wallet-top.png -------------------------------------------------------------------------------- /static/img/www-icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/www-icon-small.png -------------------------------------------------------------------------------- /static/img/www-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/img/www-icon.png -------------------------------------------------------------------------------- /static/js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/Chart.min.js -------------------------------------------------------------------------------- /static/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/actions.js -------------------------------------------------------------------------------- /static/js/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/api.js -------------------------------------------------------------------------------- /static/js/charts/betfeed_featured.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/charts/betfeed_featured.js -------------------------------------------------------------------------------- /static/js/charts/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/charts/details.js -------------------------------------------------------------------------------- /static/js/charts/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/charts/profile.js -------------------------------------------------------------------------------- /static/js/charts/ranking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/charts/ranking.js -------------------------------------------------------------------------------- /static/js/guest.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/js/intro/intro.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/intro/intro.min.js -------------------------------------------------------------------------------- /static/js/intro/scenario-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/intro/scenario-details.js -------------------------------------------------------------------------------- /static/js/intro/scenario-guest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/intro/scenario-guest.js -------------------------------------------------------------------------------- /static/js/intro/scenario-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/intro/scenario-profile.js -------------------------------------------------------------------------------- /static/js/intro/scenario-rank-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/intro/scenario-rank-user.js -------------------------------------------------------------------------------- /static/js/intro/scenario-rank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/intro/scenario-rank.js -------------------------------------------------------------------------------- /static/js/intro/scenario-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/intro/scenario-settings.js -------------------------------------------------------------------------------- /static/js/intro/scenario-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/intro/scenario-user.js -------------------------------------------------------------------------------- /static/js/intro/scenario-wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/intro/scenario-wallet.js -------------------------------------------------------------------------------- /static/js/intro/scenario-wydarzenia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/intro/scenario-wydarzenia.js -------------------------------------------------------------------------------- /static/js/jquery-1.12.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/jquery-1.12.4.min.js -------------------------------------------------------------------------------- /static/js/jquery.dotdotdot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/jquery.dotdotdot.min.js -------------------------------------------------------------------------------- /static/js/jquery.jscrollpane.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/jquery.jscrollpane.min.js -------------------------------------------------------------------------------- /static/js/jquery.mousewheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/jquery.mousewheel.js -------------------------------------------------------------------------------- /static/js/locale/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/locale/en.js -------------------------------------------------------------------------------- /static/js/locale/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/locale/lt.js -------------------------------------------------------------------------------- /static/js/locale/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/locale/pl.js -------------------------------------------------------------------------------- /static/js/loggedin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/loggedin.js -------------------------------------------------------------------------------- /static/js/noty/jquery.noty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/jquery.noty.js -------------------------------------------------------------------------------- /static/js/noty/layouts/bottom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/layouts/bottom.js -------------------------------------------------------------------------------- /static/js/noty/layouts/bottomCenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/layouts/bottomCenter.js -------------------------------------------------------------------------------- /static/js/noty/layouts/bottomLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/layouts/bottomLeft.js -------------------------------------------------------------------------------- /static/js/noty/layouts/bottomRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/layouts/bottomRight.js -------------------------------------------------------------------------------- /static/js/noty/layouts/center.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/layouts/center.js -------------------------------------------------------------------------------- /static/js/noty/layouts/centerLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/layouts/centerLeft.js -------------------------------------------------------------------------------- /static/js/noty/layouts/centerRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/layouts/centerRight.js -------------------------------------------------------------------------------- /static/js/noty/layouts/inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/layouts/inline.js -------------------------------------------------------------------------------- /static/js/noty/layouts/top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/layouts/top.js -------------------------------------------------------------------------------- /static/js/noty/layouts/topCenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/layouts/topCenter.js -------------------------------------------------------------------------------- /static/js/noty/layouts/topLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/layouts/topLeft.js -------------------------------------------------------------------------------- /static/js/noty/layouts/topRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/layouts/topRight.js -------------------------------------------------------------------------------- /static/js/noty/packaged/jquery.noty.packaged.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/packaged/jquery.noty.packaged.js -------------------------------------------------------------------------------- /static/js/noty/packaged/jquery.noty.packaged.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/packaged/jquery.noty.packaged.min.js -------------------------------------------------------------------------------- /static/js/noty/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/promise.js -------------------------------------------------------------------------------- /static/js/noty/themes/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/themes/bootstrap.js -------------------------------------------------------------------------------- /static/js/noty/themes/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/themes/default.js -------------------------------------------------------------------------------- /static/js/noty/themes/relax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/noty/themes/relax.js -------------------------------------------------------------------------------- /static/js/scroll-startstop.events.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/scroll-startstop.events.jquery.js -------------------------------------------------------------------------------- /static/js/staff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/staff.js -------------------------------------------------------------------------------- /static/js/walidacja/parsley.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/walidacja/parsley.min.js -------------------------------------------------------------------------------- /static/js/waypoints/infinite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/waypoints/infinite.js -------------------------------------------------------------------------------- /static/js/waypoints/infinite.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/waypoints/infinite.min.js -------------------------------------------------------------------------------- /static/js/waypoints/jquery.waypoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/waypoints/jquery.waypoints.js -------------------------------------------------------------------------------- /static/js/waypoints/jquery.waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/waypoints/jquery.waypoints.min.js -------------------------------------------------------------------------------- /static/js/waypoints/waypoints.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/js/waypoints/waypoints.debug.js -------------------------------------------------------------------------------- /static/uploads/documents/Polityka_prywatnosci.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/uploads/documents/Polityka_prywatnosci.pdf -------------------------------------------------------------------------------- /static/uploads/documents/Regulamin_serwisu_Politikon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/static/uploads/documents/Regulamin_serwisu_Politikon.pdf -------------------------------------------------------------------------------- /stunnel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/stunnel.conf -------------------------------------------------------------------------------- /templates/TODO_to_remove_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/TODO_to_remove_base.html -------------------------------------------------------------------------------- /templates/accounts/groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/accounts/groups.html -------------------------------------------------------------------------------- /templates/accounts/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/accounts/notifications.html -------------------------------------------------------------------------------- /templates/accounts/portfolio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/accounts/portfolio.html -------------------------------------------------------------------------------- /templates/accounts/rank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/accounts/rank.html -------------------------------------------------------------------------------- /templates/accounts/team_rank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/accounts/team_rank.html -------------------------------------------------------------------------------- /templates/accounts/transactions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/accounts/transactions.html -------------------------------------------------------------------------------- /templates/accounts/user_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/accounts/user_detail.html -------------------------------------------------------------------------------- /templates/accounts/user_home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/accounts/user_home.html -------------------------------------------------------------------------------- /templates/accounts/user_notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/accounts/user_notifications.html -------------------------------------------------------------------------------- /templates/accounts/user_portfolio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/accounts/user_portfolio.html -------------------------------------------------------------------------------- /templates/accounts/user_rank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/accounts/user_rank.html -------------------------------------------------------------------------------- /templates/accounts/user_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/accounts/user_settings.html -------------------------------------------------------------------------------- /templates/accounts/user_stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/accounts/user_stats.html -------------------------------------------------------------------------------- /templates/accounts/user_transactions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/accounts/user_transactions.html -------------------------------------------------------------------------------- /templates/accounts/userprofile_detail.html: -------------------------------------------------------------------------------- 1 | {% extends "accounts/user_detail.html" %} -------------------------------------------------------------------------------- /templates/accounts/userprofile_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/accounts/userprofile_form.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/canvas/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/canvas/home.html -------------------------------------------------------------------------------- /templates/cms/admin/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/cms/admin/change_form.html -------------------------------------------------------------------------------- /templates/cms/page_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/cms/page_detail.html -------------------------------------------------------------------------------- /templates/cms/pages_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/cms/pages_menu.html -------------------------------------------------------------------------------- /templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/contact.html -------------------------------------------------------------------------------- /templates/events/admin/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/events/admin/change_form.html -------------------------------------------------------------------------------- /templates/events/event_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/events/event_create.html -------------------------------------------------------------------------------- /templates/events/event_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/events/event_detail.html -------------------------------------------------------------------------------- /templates/events/event_embed_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/events/event_embed_detail.html -------------------------------------------------------------------------------- /templates/events/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/events/events.html -------------------------------------------------------------------------------- /templates/events/facebook_event_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/events/facebook_event_detail.html -------------------------------------------------------------------------------- /templates/events/finish_date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/events/finish_date.html -------------------------------------------------------------------------------- /templates/events/og_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/events/og_title.html -------------------------------------------------------------------------------- /templates/events/render_bet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/events/render_bet.html -------------------------------------------------------------------------------- /templates/events/render_bet_status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/events/render_bet_status.html -------------------------------------------------------------------------------- /templates/events/render_events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/events/render_events.html -------------------------------------------------------------------------------- /templates/events/render_featured_event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/events/render_featured_event.html -------------------------------------------------------------------------------- /templates/events/render_featured_events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/events/render_featured_events.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/iframes/iframe-small.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/iframes/iframe-small.html -------------------------------------------------------------------------------- /templates/language-bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/language-bar.html -------------------------------------------------------------------------------- /templates/logged_in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/logged_in.html -------------------------------------------------------------------------------- /templates/macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/macros.html -------------------------------------------------------------------------------- /templates/modals/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/modals/all.html -------------------------------------------------------------------------------- /templates/modals/anonymous.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/modals/anonymous.html -------------------------------------------------------------------------------- /templates/modals/any.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/modals/any.html -------------------------------------------------------------------------------- /templates/modals/authenticated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/modals/authenticated.html -------------------------------------------------------------------------------- /templates/modals/staff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/modals/staff.html -------------------------------------------------------------------------------- /templates/not_logged_in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/not_logged_in.html -------------------------------------------------------------------------------- /templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/registration/login.html -------------------------------------------------------------------------------- /templates/search/indexes/events/event_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/search/indexes/events/event_text.txt -------------------------------------------------------------------------------- /templates/search/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/templates/search/search.html -------------------------------------------------------------------------------- /vendor/Pubnub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KlubJagiellonski/Politikon/HEAD/vendor/Pubnub.py -------------------------------------------------------------------------------- /vendor/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------