Could not connect to {% app_name %}.
20 |Check your network connection or try again later.
21 |├── CHANGELOG.md ├── VERSION ├── conreq ├── __init__.py ├── core │ ├── __init__.py │ ├── arrs │ │ ├── __init__.py │ │ ├── tasks.py │ │ └── helpers.py │ ├── base │ │ ├── __init__.py │ │ ├── static │ │ │ ├── css │ │ │ │ ├── dark.css │ │ │ │ ├── login.css │ │ │ │ ├── initialization.css │ │ │ │ ├── issues.css │ │ │ │ ├── viewport.css │ │ │ │ ├── server_settings.css │ │ │ │ └── navbar.css │ │ │ ├── icons │ │ │ │ ├── favicon.ico │ │ │ │ ├── maskable.png │ │ │ │ ├── standard.png │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── mstile-70x70.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── mstile-150x150.png │ │ │ │ ├── mstile-310x310.png │ │ │ │ ├── android-chrome-192x192.png │ │ │ │ ├── android-chrome-512x512.png │ │ │ │ ├── apple-touch-icon-57x57.png │ │ │ │ ├── apple-touch-icon-60x60.png │ │ │ │ ├── apple-touch-icon-72x72.png │ │ │ │ ├── apple-touch-icon-76x76.png │ │ │ │ ├── apple-touch-icon-114x114.png │ │ │ │ ├── apple-touch-icon-120x120.png │ │ │ │ ├── apple-touch-icon-144x144.png │ │ │ │ ├── apple-touch-icon-152x152.png │ │ │ │ ├── apple-touch-icon-180x180.png │ │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ │ ├── apple-touch-icon-114x114-precomposed.png │ │ │ │ ├── apple-touch-icon-120x120-precomposed.png │ │ │ │ ├── apple-touch-icon-144x144-precomposed.png │ │ │ │ ├── apple-touch-icon-152x152-precomposed.png │ │ │ │ ├── apple-touch-icon-180x180-precomposed.png │ │ │ │ ├── apple-touch-icon-57x57-precomposed.png │ │ │ │ ├── apple-touch-icon-60x60-precomposed.png │ │ │ │ ├── apple-touch-icon-72x72-precomposed.png │ │ │ │ ├── apple-touch-icon-76x76-precomposed.png │ │ │ │ ├── browserconfig.xml │ │ │ │ └── site.webmanifest │ │ │ ├── images │ │ │ │ ├── conreq_logo.png │ │ │ │ ├── transparent.png │ │ │ │ ├── conreq_logo_dark.png │ │ │ │ ├── person_placeholder.png │ │ │ │ └── poster_placeholder.png │ │ │ └── js │ │ │ │ ├── sign_up.js │ │ │ │ ├── sidebar.js │ │ │ │ └── modal.js │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── start_conreq_app.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── conreq_tags.py │ │ ├── templates │ │ │ └── primary │ │ │ │ ├── loading_animation.html │ │ │ │ ├── loading_animation_container.html │ │ │ │ ├── icons.html │ │ │ │ ├── navbar.html │ │ │ │ ├── searchbar.html │ │ │ │ ├── base_app.html │ │ │ │ └── head_content_slim.html │ │ ├── urls.py │ │ ├── fields.py │ │ ├── forms.py │ │ ├── helpers.py │ │ ├── apps.py │ │ ├── tasks.py │ │ └── validators.py │ ├── pwa │ │ ├── __init__.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── pwa.py │ │ ├── apps.py │ │ ├── urls.py │ │ ├── templates │ │ │ ├── manifest.json │ │ │ ├── offline.html │ │ │ ├── serviceworker.js │ │ │ └── pwa.html │ │ ├── views.py │ │ ├── LICENSE.md │ │ └── app_settings.py │ ├── tmdb │ │ ├── __init__.py │ │ └── templates │ │ │ ├── dropdown │ │ │ └── item.html │ │ │ ├── compressed │ │ │ └── simple_posters_css.html │ │ │ ├── cards │ │ │ ├── review.html │ │ │ ├── artwork.html │ │ │ ├── person.html │ │ │ ├── casted.html │ │ │ ├── poster.html │ │ │ └── issue.html │ │ │ ├── viewport │ │ │ ├── requests.html │ │ │ ├── reported_issues.html │ │ │ ├── discover.html │ │ │ ├── search.html │ │ │ ├── components │ │ │ │ ├── more_info_collection.html │ │ │ │ └── more_info_recommended.html │ │ │ └── manage_users.html │ │ │ └── modal │ │ │ ├── discover_filter_advanced.html │ │ │ ├── report_issue.html │ │ │ └── discover_filter_simple.html │ ├── discover │ │ ├── __init__.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── apps.py │ │ └── urls.py │ ├── more_info │ │ ├── __init__.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── apps.py │ │ └── urls.py │ ├── search │ │ ├── __init__.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── apps.py │ │ ├── urls.py │ │ └── views.py │ ├── sign_up │ │ ├── __init__.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── templates │ │ │ ├── modal │ │ │ │ └── default.html │ │ │ └── registration │ │ │ │ ├── sign_in.html │ │ │ │ └── sign_up.html │ │ ├── urls.py │ │ └── views.py │ ├── manage_users │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ ├── 0002_profile_http_header_auth_user.py │ │ │ ├── 0004_rename_http_header_auth_user_profile_externally_authenticated.py │ │ │ ├── 0003_alter_profile_id.py │ │ │ └── 0001_initial.py │ │ ├── apps.py │ │ ├── admin.py │ │ ├── urls.py │ │ └── models.py │ ├── password_reset │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── urls.py │ │ ├── views.py │ │ ├── templates │ │ │ └── conreq │ │ │ │ ├── password_reset.html │ │ │ │ ├── password_reset_sent.html │ │ │ │ └── password_reset_confirm.html │ │ └── forms.py │ ├── user_requests │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ ├── 0005_remove_userrequest_source.py │ │ │ ├── 0003_alter_userrequest_id.py │ │ │ ├── 0002_userrequest_date_requested.py │ │ │ ├── 0004_alter_userrequest_requested_by.py │ │ │ └── 0001_initial.py │ │ ├── apps.py │ │ ├── admin.py │ │ ├── urls.py │ │ └── models.py │ ├── websockets │ │ ├── __init__.py │ │ └── consumers.py │ ├── issue_reporting │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ ├── 0017_remove_reportedissue_source.py │ │ │ ├── 0004_auto_20210203_2153.py │ │ │ ├── 0013_remove_reportedissue_resolutions.py │ │ │ ├── 0007_auto_20210204_0207.py │ │ │ ├── 0012_rename_manually_resolved_reportedissue_resolved.py │ │ │ ├── 0014_reportedissue_resolutions.py │ │ │ ├── 0019_reportedissue_auto_resolve_in_progress.py │ │ │ ├── 0010_alter_reportedissue_id.py │ │ │ ├── 0018_alter_reportedissue_resolutions.py │ │ │ ├── 0002_auto_20210203_1912.py │ │ │ ├── 0003_auto_20210203_1917.py │ │ │ ├── 0005_auto_20210203_2248.py │ │ │ ├── 0011_auto_20210621_2105.py │ │ │ ├── 0006_auto_20210203_2302.py │ │ │ ├── 0008_auto_20210206_0020.py │ │ │ ├── 0015_auto_20210705_2244.py │ │ │ ├── 0016_auto_20210705_2248.py │ │ │ ├── 0009_auto_20210206_0405.py │ │ │ └── 0001_initial.py │ │ ├── apps.py │ │ ├── admin.py │ │ ├── urls.py │ │ ├── models.py │ │ └── helpers.py │ └── server_settings │ │ ├── __init__.py │ │ ├── migrations │ │ ├── __init__.py │ │ ├── 0019_remove_conreqconfig_conreq_api_key.py │ │ ├── 0015_remove_conreqconfig_conreq_app_name.py │ │ ├── 0017_remove_conreqconfig_conreq_dark_theme.py │ │ ├── 0005_auto_20210127_0107.py │ │ ├── 0003_conreqconfig_conreq_initialized.py │ │ ├── 0007_conreqconfig_conreq_http_header_auth.py │ │ ├── 0008_auto_20210203_0053.py │ │ ├── 0013_conreqconfig_conreq_allow_tv_specials.py │ │ ├── 0016_alter_conreqconfig_id.py │ │ ├── 0006_auto_20210130_0236.py │ │ ├── 0011_auto_20210205_2343.py │ │ ├── 0014_auto_20210313_0231.py │ │ ├── 0010_auto_20210205_2326.py │ │ ├── 0002_auto_20210118_2004.py │ │ ├── 0009_auto_20210204_1938.py │ │ ├── 0012_auto_20210209_2144.py │ │ └── 0018_auto_20210428_2039.py │ │ ├── apps.py │ │ ├── admin.py │ │ ├── urls.py │ │ └── models.py ├── utils │ ├── __init__.py │ ├── database.py │ ├── debug.py │ ├── log.py │ ├── user_apps.py │ ├── generic.py │ └── threads.py ├── app_template │ └── app_name │ │ ├── __init__.py │ │ ├── main │ │ ├── __init__.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── urls.py │ │ ├── models.py │ │ ├── admin.py │ │ ├── tests.py │ │ ├── views.py │ │ └── apps.py │ │ ├── package.json │ │ ├── requirements.txt │ │ ├── navtabs.py │ │ ├── config.py │ │ ├── settings.py │ │ ├── app.json │ │ └── .gitignore └── asgi.py ├── requirements ├── dev.txt ├── docs.txt └── main.txt ├── docs ├── src │ ├── dictionary.txt │ ├── contrib │ │ ├── apps.md │ │ └── docs.md │ ├── develop │ │ ├── creating_apps.md │ │ ├── build_docker.md │ │ └── run_conreq.md │ ├── configure │ │ ├── static_files.md │ │ ├── mysql.md │ │ ├── webserver.md │ │ └── organizr.md │ ├── index.md │ └── install │ │ ├── docker.md │ │ └── nssm.md └── mkdocs.yml ├── misc ├── branding │ ├── circle.ai │ ├── circle.png │ ├── no_bg_dark.ai │ ├── conreq_logo.png │ ├── conreq_logo.psd │ ├── conreq_square.ai │ ├── no_bg_dark.png │ ├── no_bg_light.ai │ ├── no_bg_light.png │ ├── circle_outline.ai │ ├── circle_outline.png │ ├── conreq_square.png │ ├── no_bg_gradient.ai │ ├── no_bg_gradient.png │ ├── rounded_square.ai │ ├── rounded_square.png │ ├── conreq_logo_dark.png │ ├── conreq_logo_dark.psd │ ├── rounded_square_outline.ai │ └── rounded_square_outline.png ├── other │ ├── person_placeholder.psd │ └── poster_placeholder.psd ├── screenshots │ ├── mobile_sidebar.png │ ├── mobile_sign_in.png │ ├── desktop_discover.png │ ├── desktop_sign_in.png │ ├── mobile_discover.png │ ├── mobile_more_info.png │ ├── desktop_more_info.png │ ├── mobile_modal_filter.png │ ├── mobile_registration.png │ ├── desktop_modal_filter.png │ ├── desktop_modal_preview.png │ ├── desktop_registration.png │ ├── desktop_modal_episode_selection.png │ └── mobile_modal_episode_selection.png └── legal │ ├── fontawesome_attribution.js │ └── fontawesome_license.txt ├── requirements.txt ├── .pre-commit-config.yaml ├── .pylintrc ├── .github ├── dependabot.yml ├── pull_request_template.md ├── ISSUE_TEMPLATE │ ├── config.yml │ └── bug_report.yml ├── FUNDING.yml └── workflows │ ├── publish-develop-docs.yml │ ├── publish-release-docs.yml │ ├── publish-develop-dockerhub.yml │ ├── test-docs.yml │ ├── publish-latest-dockerhub.yml │ ├── test-python.yml │ ├── publish-develop-ghcr.yml │ └── publish-latest-ghcr.yml ├── .vscode ├── extensions.json └── settings.json ├── manage.py ├── Dockerfile └── .gitignore /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.22.0 2 | -------------------------------------------------------------------------------- /conreq/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/arrs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/pwa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/tmdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/discover/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/more_info/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/sign_up/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/base/static/css/dark.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/manage_users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/password_reset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/pwa/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/user_requests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/websockets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/app_template/app_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/base/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/base/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/base/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/discover/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/issue_reporting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/pwa/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/search/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/server_settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/sign_up/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/app_template/app_name/main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/app_template/app_name/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /conreq/core/base/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/manage_users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/more_info/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/user_requests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/issue_reporting/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/core/server_settings/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conreq/app_template/app_name/main/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- 1 | black 2 | pylint 3 | rope 4 | pylint_django -------------------------------------------------------------------------------- /docs/src/dictionary.txt: -------------------------------------------------------------------------------- 1 | conreq 2 | webserver 3 | unraid 4 | reddit 5 | django 6 | -------------------------------------------------------------------------------- /conreq/core/base/static/css/login.css: -------------------------------------------------------------------------------- 1 | .sign-in-form { 2 | margin-top: 35px; 3 | } 4 | -------------------------------------------------------------------------------- /conreq/app_template/app_name/main/urls.py: -------------------------------------------------------------------------------- 1 | app_name = "{{ app_name }}" 2 | urlpattern = [] 3 | -------------------------------------------------------------------------------- /docs/src/contrib/apps.md: -------------------------------------------------------------------------------- 1 | Work in Progress, Conreq app framework has not been finalized. 2 | -------------------------------------------------------------------------------- /docs/src/develop/creating_apps.md: -------------------------------------------------------------------------------- 1 | Work in Progress, Conreq app framework has not been finalized. 2 | -------------------------------------------------------------------------------- /misc/branding/circle.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/circle.ai -------------------------------------------------------------------------------- /misc/branding/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/circle.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements/main.txt 2 | -r requirements/dev.txt 3 | -r requirements/docs.txt 4 | -------------------------------------------------------------------------------- /misc/branding/no_bg_dark.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/no_bg_dark.ai -------------------------------------------------------------------------------- /conreq/app_template/app_name/main/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /conreq/app_template/app_name/requirements.txt: -------------------------------------------------------------------------------- 1 | # Any requirements in here will be automatically installed by Conreq -------------------------------------------------------------------------------- /misc/branding/conreq_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/conreq_logo.png -------------------------------------------------------------------------------- /misc/branding/conreq_logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/conreq_logo.psd -------------------------------------------------------------------------------- /misc/branding/conreq_square.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/conreq_square.ai -------------------------------------------------------------------------------- /misc/branding/no_bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/no_bg_dark.png -------------------------------------------------------------------------------- /misc/branding/no_bg_light.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/no_bg_light.ai -------------------------------------------------------------------------------- /misc/branding/no_bg_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/no_bg_light.png -------------------------------------------------------------------------------- /conreq/app_template/app_name/main/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /conreq/app_template/app_name/main/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /conreq/app_template/app_name/main/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /misc/branding/circle_outline.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/circle_outline.ai -------------------------------------------------------------------------------- /misc/branding/circle_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/circle_outline.png -------------------------------------------------------------------------------- /misc/branding/conreq_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/conreq_square.png -------------------------------------------------------------------------------- /misc/branding/no_bg_gradient.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/no_bg_gradient.ai -------------------------------------------------------------------------------- /misc/branding/no_bg_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/no_bg_gradient.png -------------------------------------------------------------------------------- /misc/branding/rounded_square.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/rounded_square.ai -------------------------------------------------------------------------------- /misc/branding/rounded_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/rounded_square.png -------------------------------------------------------------------------------- /misc/branding/conreq_logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/conreq_logo_dark.png -------------------------------------------------------------------------------- /misc/branding/conreq_logo_dark.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/conreq_logo_dark.psd -------------------------------------------------------------------------------- /misc/other/person_placeholder.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/other/person_placeholder.psd -------------------------------------------------------------------------------- /misc/other/poster_placeholder.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/other/poster_placeholder.psd -------------------------------------------------------------------------------- /misc/screenshots/mobile_sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/screenshots/mobile_sidebar.png -------------------------------------------------------------------------------- /misc/screenshots/mobile_sign_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/screenshots/mobile_sign_in.png -------------------------------------------------------------------------------- /misc/screenshots/desktop_discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/screenshots/desktop_discover.png -------------------------------------------------------------------------------- /misc/screenshots/desktop_sign_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/screenshots/desktop_sign_in.png -------------------------------------------------------------------------------- /misc/screenshots/mobile_discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/screenshots/mobile_discover.png -------------------------------------------------------------------------------- /misc/screenshots/mobile_more_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/screenshots/mobile_more_info.png -------------------------------------------------------------------------------- /conreq/core/tmdb/templates/dropdown/item.html: -------------------------------------------------------------------------------- 1 | {{ dropdown_item.label }} -------------------------------------------------------------------------------- /misc/branding/rounded_square_outline.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/rounded_square_outline.ai -------------------------------------------------------------------------------- /misc/branding/rounded_square_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/branding/rounded_square_outline.png -------------------------------------------------------------------------------- /misc/screenshots/desktop_more_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/screenshots/desktop_more_info.png -------------------------------------------------------------------------------- /misc/screenshots/mobile_modal_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/screenshots/mobile_modal_filter.png -------------------------------------------------------------------------------- /misc/screenshots/mobile_registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/screenshots/mobile_registration.png -------------------------------------------------------------------------------- /conreq/core/base/static/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/favicon.ico -------------------------------------------------------------------------------- /conreq/core/base/static/icons/maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/maskable.png -------------------------------------------------------------------------------- /conreq/core/base/static/icons/standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/standard.png -------------------------------------------------------------------------------- /conreq/core/pwa/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class PwaConfig(AppConfig): 5 | name = "conreq.core.pwa" 6 | -------------------------------------------------------------------------------- /misc/screenshots/desktop_modal_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/screenshots/desktop_modal_filter.png -------------------------------------------------------------------------------- /misc/screenshots/desktop_modal_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/screenshots/desktop_modal_preview.png -------------------------------------------------------------------------------- /misc/screenshots/desktop_registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/screenshots/desktop_registration.png -------------------------------------------------------------------------------- /conreq/core/base/static/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/favicon-16x16.png -------------------------------------------------------------------------------- /conreq/core/base/static/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/favicon-32x32.png -------------------------------------------------------------------------------- /conreq/core/base/static/icons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/mstile-70x70.png -------------------------------------------------------------------------------- /conreq/core/base/static/images/conreq_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/images/conreq_logo.png -------------------------------------------------------------------------------- /conreq/core/base/static/images/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/images/transparent.png -------------------------------------------------------------------------------- /conreq/core/search/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class SearchConfig(AppConfig): 5 | name = "conreq.core.search" 6 | -------------------------------------------------------------------------------- /conreq/core/sign_up/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class SignUpConfig(AppConfig): 5 | name = "conreq.core.sign_up" 6 | -------------------------------------------------------------------------------- /conreq/core/base/static/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /conreq/core/base/static/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/mstile-150x150.png -------------------------------------------------------------------------------- /conreq/core/base/static/icons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/mstile-310x310.png -------------------------------------------------------------------------------- /conreq/core/base/static/js/sign_up.js: -------------------------------------------------------------------------------- 1 | document.querySelector("form").action = 2 | document.querySelector("form").action + window.location.search; 3 | -------------------------------------------------------------------------------- /conreq/core/discover/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class DiscoverConfig(AppConfig): 5 | name = "conreq.core.discover" 6 | -------------------------------------------------------------------------------- /conreq/core/more_info/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MoreInfoConfig(AppConfig): 5 | name = "conreq.core.more_info" 6 | -------------------------------------------------------------------------------- /conreq/core/base/static/images/conreq_logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/images/conreq_logo_dark.png -------------------------------------------------------------------------------- /misc/screenshots/desktop_modal_episode_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/screenshots/desktop_modal_episode_selection.png -------------------------------------------------------------------------------- /misc/screenshots/mobile_modal_episode_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/misc/screenshots/mobile_modal_episode_selection.png -------------------------------------------------------------------------------- /conreq/core/base/static/images/person_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/images/person_placeholder.png -------------------------------------------------------------------------------- /conreq/core/base/static/images/poster_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/images/poster_placeholder.png -------------------------------------------------------------------------------- /conreq/core/manage_users/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ManageUsersConfig(AppConfig): 5 | name = "conreq.core.manage_users" 6 | -------------------------------------------------------------------------------- /conreq/core/base/static/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /conreq/core/base/static/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /conreq/core/base/static/icons/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /conreq/core/base/static/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /conreq/core/base/static/icons/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /conreq/core/base/static/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /conreq/core/user_requests/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class UserRequestsConfig(AppConfig): 5 | name = "conreq.core.user_requests" 6 | -------------------------------------------------------------------------------- /conreq/app_template/app_name/navtabs.py: -------------------------------------------------------------------------------- 1 | from django.urls import reverse 2 | 3 | USER_NAVTABS = [] 4 | ADMIN_NAVTABS = [] 5 | CUSTOM_NAVTABS = {} 6 | SETTINGS_TABS = [] 7 | -------------------------------------------------------------------------------- /conreq/core/base/static/icons/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /conreq/core/base/static/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /conreq/core/base/static/icons/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /conreq/core/base/static/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /conreq/core/base/static/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /conreq/core/issue_reporting/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class IssueReportingConfig(AppConfig): 5 | name = "conreq.core.issue_reporting" 6 | -------------------------------------------------------------------------------- /conreq/core/server_settings/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ServerSettingsConfig(AppConfig): 5 | name = "conreq.core.server_settings" 6 | -------------------------------------------------------------------------------- /conreq/core/base/static/icons/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archmonger/Conreq/HEAD/conreq/core/base/static/icons/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /conreq/core/base/templates/primary/loading_animation.html: -------------------------------------------------------------------------------- 1 |
7 |
8 | Could not connect to {% app_name %}.
20 |Check your network connection or try again later.
21 |
20 |
20 | 26 | We’ve emailed you instructions for setting your password, if an account exists with the details you 27 | entered. You 28 | should receive them shortly. 29 |
30 |31 | If you don’t receive an email, please make sure you’ve entered the correct information. 32 | Additionally, make sure to check your spam folder. 33 |
34 |
20 | 37 | The password reset link was invalid, possibly because it has already been used. Please request a new 38 | password reset. 39 |
40 | {% endif %} 41 | 42 |
21 |
27 | {% else %}
28 |
30 | {% endif %}
31 |
26 |
23 |