├── .env.dist ├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.yml └── workflows │ ├── test.yaml │ └── upload_to_dockerhub.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfile.prod ├── INSTALLATION.md ├── LICENSE ├── Makefile ├── README.md ├── community ├── __init__.py ├── context_processors.py ├── templates │ ├── _tags_filtering_form.html │ ├── account │ │ └── custom_captcha.html │ ├── base.html │ ├── base_site.html │ ├── community │ │ └── index.html │ ├── confirm_delete.html │ ├── footer.html │ ├── header.html │ └── search_form.html ├── templatetags │ ├── __init__.py │ └── devtags.py ├── tests │ ├── __init__.py │ └── test_homepage.py ├── urls.py └── views.py ├── dev_requirements.txt ├── docker-compose.yml ├── events ├── __init__.py ├── admin.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20170325_2011.py │ ├── 0003_eventparticipation_gender.py │ ├── 0004_auto_20180428_1949.py │ ├── 0005_auto_20180429_1546.py │ ├── 0006_alter_event_slug.py │ ├── 0007_alter_eventparticipation_seniority.py │ └── __init__.py ├── mixins.py ├── models.py ├── templatetags │ ├── __init__.py │ └── event_tags.py ├── tests │ ├── __init__.py │ ├── factories.py │ ├── test_event_participation.py │ ├── test_view_report_event.py │ └── test_views.py ├── urls.py └── views.py ├── fixtures ├── initial_data.json └── permission.json ├── initialize.sh ├── joboffers ├── __init__.py ├── admin.py ├── apps.py ├── constants.py ├── forms.py ├── joboffer_actions.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── create_analytics_sample_data.py │ │ ├── create_facebook_page_token.py │ │ ├── expire_old_offers.py │ │ ├── notify_pending_moderation_offers.py │ │ ├── test_discourse.py │ │ ├── test_facebook.py │ │ ├── test_mastodon.py │ │ ├── test_moderation_notification.py │ │ ├── test_telegram.py │ │ └── test_twitter.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20211102_1725.py │ ├── 0003_auto_20211125_1435.py │ ├── 0004_joboffer_short_description.py │ ├── 0005_alter_joboffer_short_description.py │ ├── 0006_auto_20220110_1801.py │ ├── 0007_auto_20220216_1022.py │ ├── 0008_auto_20220304_1609.py │ ├── 0009_alter_joboffer_description.py │ ├── 0010_auto_20220311_1001.py │ ├── 0011_rename_joboffervisualization_jobofferaccesslog.py │ ├── 0012_auto_20220413_1659.py │ ├── 0013_alter_joboffer_title.py │ ├── 0014_alter_jobofferaccesslog_options.py │ ├── 0015_alter_joboffer_company.py │ └── __init__.py ├── models.py ├── publishers │ ├── __init__.py │ ├── discourse │ │ ├── __init__.py │ │ └── template.html │ ├── facebook │ │ ├── __init__.py │ │ └── template.html │ ├── mastodon │ │ ├── __init__.py │ │ └── template.html │ ├── telegram │ │ ├── __init__.py │ │ └── template.html │ ├── template.html │ └── twitter │ │ ├── __init__.py │ │ └── template.html ├── telegram_api.py ├── templates │ └── joboffers │ │ ├── _paginator.html │ │ ├── _tags.html │ │ ├── history.html │ │ ├── history │ │ ├── _comment.html │ │ ├── _create.html │ │ ├── _header.html │ │ └── _update.html │ │ ├── joboffer_admin.html │ │ ├── joboffer_analytics.html │ │ ├── joboffer_detail.html │ │ ├── joboffer_form.html │ │ ├── joboffer_history.html │ │ ├── joboffer_list.html │ │ ├── joboffer_overview.html │ │ └── joboffer_reject.html ├── templatetags │ ├── __init__.py │ └── history.py ├── tests │ ├── __init__.py │ ├── factories.py │ ├── fixtures.py │ ├── joboffers_descriptions.py │ ├── test_discourse_publisher.py │ ├── test_expire_old_offers.py │ ├── test_facebook_publisher.py │ ├── test_filters.py │ ├── test_joboffer_actions.py │ ├── test_joboffer_publisher.py │ ├── test_joboffer_validations.py │ ├── test_mastodon_publisher.py │ ├── test_models.py │ ├── test_notify-pending_moderation_offers.py │ ├── test_telegram_api.py │ ├── test_twitter_publisher.py │ ├── test_utils.py │ ├── test_views.py │ └── utils.py ├── urls.py ├── utils.py └── views.py ├── manage.py ├── news ├── __init__.py ├── admin.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests │ ├── __init__.py │ └── factories.py ├── urls.py └── views.py ├── prod_requirements.txt ├── pull_request_template.md ├── pyarweb ├── __init__.py ├── celery.py ├── formats │ ├── __init__.py │ └── es_AR │ │ ├── __init__.py │ │ └── formats.py ├── forms.py ├── gunicorn_cfg.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── development │ │ └── __init__.py │ ├── production │ │ └── __init__.py │ └── staging │ │ └── __init__.py ├── tests │ └── fixtures.py ├── urls.py ├── views.py └── wsgi.py ├── pycompanies ├── __init__.py ├── admin.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_company_rank.py │ ├── 0003_usercompanyprofile.py │ ├── 0004_alter_usercompanyprofile_user.py │ ├── 0005_company_owner_to_usercompanyprofile.py │ ├── 0006_remove_company_owner.py │ └── __init__.py ├── models.py ├── tests │ ├── __init__.py │ ├── factories.py │ ├── fixtures.py │ └── test_views.py ├── urls.py └── views.py ├── pytest.ini ├── requirements.txt ├── static ├── bootstrap │ └── 3.1.1 │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ ├── bootstrap-growl.min.js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js ├── css │ ├── animate.css │ ├── event_map.css │ ├── search.css │ └── styles.css ├── img │ ├── azure-footer.png │ ├── banner.png │ ├── icons │ │ ├── icons.png │ │ ├── icons_active.png │ │ └── pyar.ico │ ├── logo-header.png │ ├── moin-www.png │ ├── pyar-footer.png │ ├── python-banner.png │ ├── python-footer.png │ └── ribbon.png ├── jquery-autosuggest │ ├── css │ │ ├── autoSuggest-grappelli.css │ │ └── autoSuggest.css │ └── js │ │ └── jquery.autoSuggest.minified.js ├── jquery │ └── 1.11.0 │ │ └── jquery.min.js └── js │ ├── joboffer_track.js │ ├── tag_filtering.js │ └── web.js └── templates ├── 403.html ├── 404.html ├── 500.html ├── account ├── base.html ├── email_confirm.html ├── login.html ├── logout.html ├── password_reset.html ├── password_reset_done.html ├── password_reset_from_key.html ├── password_reset_from_key_done.html ├── signup.html ├── signup_closed.html └── verification_sent.html ├── buscador.html ├── companies ├── _user_actions.html ├── company_admin.html ├── company_analytics.html ├── company_association_list.html ├── company_confirm_delete.html ├── company_confirm_disassociate.html ├── company_detail.html ├── company_form.html └── company_list.html ├── email_confirm_la ├── email │ ├── email_confirmation_message.html │ └── email_confirmation_subject.txt ├── email_confirmation_expiration.html ├── email_confirmation_fail.html └── email_confirmation_success.html ├── events ├── event_confirm_delete.html ├── event_detail.html ├── event_detail_body.html ├── event_form.html ├── event_list.html ├── eventparticipation_confirm_delete.html ├── eventparticipation_form.html ├── eventparticipation_list.html └── next_events.html ├── irc └── irc.html ├── jobs ├── _jobs_tags.html ├── inactivate_job_email.txt ├── job_confirm_delete.html ├── job_detail.html ├── job_detail_feed.html ├── job_form.html ├── job_inactivate_form.html ├── job_list.html ├── job_overview.html └── jobs_by_user.html ├── news ├── _news_tags.html ├── newsarticle_confirm_delete.html ├── newsarticle_detail.html ├── newsarticle_form.html └── newsarticle_list.html ├── registration ├── activate.html ├── activation_complete.html ├── activation_email.txt ├── activation_email_subject.txt ├── login.html ├── logout.html ├── registration_complete.html └── registration_form.html ├── special_page.html └── waliki ├── 403.html ├── detail.html └── whatchanged.html /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/.env.dist -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=99 3 | exclude=migrations, .git, build.sh 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.github/workflows/upload_to_dockerhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/.github/workflows/upload_to_dockerhub.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/Dockerfile.prod -------------------------------------------------------------------------------- /INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/INSTALLATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/README.md -------------------------------------------------------------------------------- /community/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /community/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/community/context_processors.py -------------------------------------------------------------------------------- /community/templates/_tags_filtering_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/community/templates/_tags_filtering_form.html -------------------------------------------------------------------------------- /community/templates/account/custom_captcha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/community/templates/account/custom_captcha.html -------------------------------------------------------------------------------- /community/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/community/templates/base.html -------------------------------------------------------------------------------- /community/templates/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/community/templates/base_site.html -------------------------------------------------------------------------------- /community/templates/community/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/community/templates/community/index.html -------------------------------------------------------------------------------- /community/templates/confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/community/templates/confirm_delete.html -------------------------------------------------------------------------------- /community/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/community/templates/footer.html -------------------------------------------------------------------------------- /community/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/community/templates/header.html -------------------------------------------------------------------------------- /community/templates/search_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/community/templates/search_form.html -------------------------------------------------------------------------------- /community/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /community/templatetags/devtags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/community/templatetags/devtags.py -------------------------------------------------------------------------------- /community/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /community/tests/test_homepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/community/tests/test_homepage.py -------------------------------------------------------------------------------- /community/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/community/urls.py -------------------------------------------------------------------------------- /community/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/community/views.py -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/dev_requirements.txt -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /events/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/events/admin.py -------------------------------------------------------------------------------- /events/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/events/forms.py -------------------------------------------------------------------------------- /events/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/events/migrations/0001_initial.py -------------------------------------------------------------------------------- /events/migrations/0002_auto_20170325_2011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/events/migrations/0002_auto_20170325_2011.py -------------------------------------------------------------------------------- /events/migrations/0003_eventparticipation_gender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/events/migrations/0003_eventparticipation_gender.py -------------------------------------------------------------------------------- /events/migrations/0004_auto_20180428_1949.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/events/migrations/0004_auto_20180428_1949.py -------------------------------------------------------------------------------- /events/migrations/0005_auto_20180429_1546.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/events/migrations/0005_auto_20180429_1546.py -------------------------------------------------------------------------------- /events/migrations/0006_alter_event_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/events/migrations/0006_alter_event_slug.py -------------------------------------------------------------------------------- /events/migrations/0007_alter_eventparticipation_seniority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/events/migrations/0007_alter_eventparticipation_seniority.py -------------------------------------------------------------------------------- /events/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /events/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/events/mixins.py -------------------------------------------------------------------------------- /events/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/events/models.py -------------------------------------------------------------------------------- /events/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /events/templatetags/event_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/events/templatetags/event_tags.py -------------------------------------------------------------------------------- /events/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /events/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/events/tests/factories.py -------------------------------------------------------------------------------- /events/tests/test_event_participation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/events/tests/test_event_participation.py -------------------------------------------------------------------------------- /events/tests/test_view_report_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/events/tests/test_view_report_event.py -------------------------------------------------------------------------------- /events/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/events/tests/test_views.py -------------------------------------------------------------------------------- /events/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/events/urls.py -------------------------------------------------------------------------------- /events/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/events/views.py -------------------------------------------------------------------------------- /fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/fixtures/initial_data.json -------------------------------------------------------------------------------- /fixtures/permission.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/fixtures/permission.json -------------------------------------------------------------------------------- /initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/initialize.sh -------------------------------------------------------------------------------- /joboffers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /joboffers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/admin.py -------------------------------------------------------------------------------- /joboffers/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/apps.py -------------------------------------------------------------------------------- /joboffers/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/constants.py -------------------------------------------------------------------------------- /joboffers/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/forms.py -------------------------------------------------------------------------------- /joboffers/joboffer_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/joboffer_actions.py -------------------------------------------------------------------------------- /joboffers/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /joboffers/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/management/commands/__init__.py -------------------------------------------------------------------------------- /joboffers/management/commands/create_analytics_sample_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/management/commands/create_analytics_sample_data.py -------------------------------------------------------------------------------- /joboffers/management/commands/create_facebook_page_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/management/commands/create_facebook_page_token.py -------------------------------------------------------------------------------- /joboffers/management/commands/expire_old_offers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/management/commands/expire_old_offers.py -------------------------------------------------------------------------------- /joboffers/management/commands/notify_pending_moderation_offers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/management/commands/notify_pending_moderation_offers.py -------------------------------------------------------------------------------- /joboffers/management/commands/test_discourse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/management/commands/test_discourse.py -------------------------------------------------------------------------------- /joboffers/management/commands/test_facebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/management/commands/test_facebook.py -------------------------------------------------------------------------------- /joboffers/management/commands/test_mastodon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/management/commands/test_mastodon.py -------------------------------------------------------------------------------- /joboffers/management/commands/test_moderation_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/management/commands/test_moderation_notification.py -------------------------------------------------------------------------------- /joboffers/management/commands/test_telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/management/commands/test_telegram.py -------------------------------------------------------------------------------- /joboffers/management/commands/test_twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/management/commands/test_twitter.py -------------------------------------------------------------------------------- /joboffers/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/migrations/0001_initial.py -------------------------------------------------------------------------------- /joboffers/migrations/0002_auto_20211102_1725.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/migrations/0002_auto_20211102_1725.py -------------------------------------------------------------------------------- /joboffers/migrations/0003_auto_20211125_1435.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/migrations/0003_auto_20211125_1435.py -------------------------------------------------------------------------------- /joboffers/migrations/0004_joboffer_short_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/migrations/0004_joboffer_short_description.py -------------------------------------------------------------------------------- /joboffers/migrations/0005_alter_joboffer_short_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/migrations/0005_alter_joboffer_short_description.py -------------------------------------------------------------------------------- /joboffers/migrations/0006_auto_20220110_1801.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/migrations/0006_auto_20220110_1801.py -------------------------------------------------------------------------------- /joboffers/migrations/0007_auto_20220216_1022.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/migrations/0007_auto_20220216_1022.py -------------------------------------------------------------------------------- /joboffers/migrations/0008_auto_20220304_1609.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/migrations/0008_auto_20220304_1609.py -------------------------------------------------------------------------------- /joboffers/migrations/0009_alter_joboffer_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/migrations/0009_alter_joboffer_description.py -------------------------------------------------------------------------------- /joboffers/migrations/0010_auto_20220311_1001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/migrations/0010_auto_20220311_1001.py -------------------------------------------------------------------------------- /joboffers/migrations/0011_rename_joboffervisualization_jobofferaccesslog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/migrations/0011_rename_joboffervisualization_jobofferaccesslog.py -------------------------------------------------------------------------------- /joboffers/migrations/0012_auto_20220413_1659.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/migrations/0012_auto_20220413_1659.py -------------------------------------------------------------------------------- /joboffers/migrations/0013_alter_joboffer_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/migrations/0013_alter_joboffer_title.py -------------------------------------------------------------------------------- /joboffers/migrations/0014_alter_jobofferaccesslog_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/migrations/0014_alter_jobofferaccesslog_options.py -------------------------------------------------------------------------------- /joboffers/migrations/0015_alter_joboffer_company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/migrations/0015_alter_joboffer_company.py -------------------------------------------------------------------------------- /joboffers/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /joboffers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/models.py -------------------------------------------------------------------------------- /joboffers/publishers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/publishers/__init__.py -------------------------------------------------------------------------------- /joboffers/publishers/discourse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/publishers/discourse/__init__.py -------------------------------------------------------------------------------- /joboffers/publishers/discourse/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/publishers/discourse/template.html -------------------------------------------------------------------------------- /joboffers/publishers/facebook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/publishers/facebook/__init__.py -------------------------------------------------------------------------------- /joboffers/publishers/facebook/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/publishers/facebook/template.html -------------------------------------------------------------------------------- /joboffers/publishers/mastodon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/publishers/mastodon/__init__.py -------------------------------------------------------------------------------- /joboffers/publishers/mastodon/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/publishers/mastodon/template.html -------------------------------------------------------------------------------- /joboffers/publishers/telegram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/publishers/telegram/__init__.py -------------------------------------------------------------------------------- /joboffers/publishers/telegram/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/publishers/telegram/template.html -------------------------------------------------------------------------------- /joboffers/publishers/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/publishers/template.html -------------------------------------------------------------------------------- /joboffers/publishers/twitter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/publishers/twitter/__init__.py -------------------------------------------------------------------------------- /joboffers/publishers/twitter/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/publishers/twitter/template.html -------------------------------------------------------------------------------- /joboffers/telegram_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/telegram_api.py -------------------------------------------------------------------------------- /joboffers/templates/joboffers/_paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/templates/joboffers/_paginator.html -------------------------------------------------------------------------------- /joboffers/templates/joboffers/_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/templates/joboffers/_tags.html -------------------------------------------------------------------------------- /joboffers/templates/joboffers/history.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /joboffers/templates/joboffers/history/_comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/templates/joboffers/history/_comment.html -------------------------------------------------------------------------------- /joboffers/templates/joboffers/history/_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/templates/joboffers/history/_create.html -------------------------------------------------------------------------------- /joboffers/templates/joboffers/history/_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/templates/joboffers/history/_header.html -------------------------------------------------------------------------------- /joboffers/templates/joboffers/history/_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/templates/joboffers/history/_update.html -------------------------------------------------------------------------------- /joboffers/templates/joboffers/joboffer_admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/templates/joboffers/joboffer_admin.html -------------------------------------------------------------------------------- /joboffers/templates/joboffers/joboffer_analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/templates/joboffers/joboffer_analytics.html -------------------------------------------------------------------------------- /joboffers/templates/joboffers/joboffer_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/templates/joboffers/joboffer_detail.html -------------------------------------------------------------------------------- /joboffers/templates/joboffers/joboffer_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/templates/joboffers/joboffer_form.html -------------------------------------------------------------------------------- /joboffers/templates/joboffers/joboffer_history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/templates/joboffers/joboffer_history.html -------------------------------------------------------------------------------- /joboffers/templates/joboffers/joboffer_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/templates/joboffers/joboffer_list.html -------------------------------------------------------------------------------- /joboffers/templates/joboffers/joboffer_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/templates/joboffers/joboffer_overview.html -------------------------------------------------------------------------------- /joboffers/templates/joboffers/joboffer_reject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/templates/joboffers/joboffer_reject.html -------------------------------------------------------------------------------- /joboffers/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /joboffers/templatetags/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/templatetags/history.py -------------------------------------------------------------------------------- /joboffers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /joboffers/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/tests/factories.py -------------------------------------------------------------------------------- /joboffers/tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/tests/fixtures.py -------------------------------------------------------------------------------- /joboffers/tests/joboffers_descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/tests/joboffers_descriptions.py -------------------------------------------------------------------------------- /joboffers/tests/test_discourse_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/tests/test_discourse_publisher.py -------------------------------------------------------------------------------- /joboffers/tests/test_expire_old_offers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/tests/test_expire_old_offers.py -------------------------------------------------------------------------------- /joboffers/tests/test_facebook_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/tests/test_facebook_publisher.py -------------------------------------------------------------------------------- /joboffers/tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/tests/test_filters.py -------------------------------------------------------------------------------- /joboffers/tests/test_joboffer_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/tests/test_joboffer_actions.py -------------------------------------------------------------------------------- /joboffers/tests/test_joboffer_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/tests/test_joboffer_publisher.py -------------------------------------------------------------------------------- /joboffers/tests/test_joboffer_validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/tests/test_joboffer_validations.py -------------------------------------------------------------------------------- /joboffers/tests/test_mastodon_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/tests/test_mastodon_publisher.py -------------------------------------------------------------------------------- /joboffers/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/tests/test_models.py -------------------------------------------------------------------------------- /joboffers/tests/test_notify-pending_moderation_offers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/tests/test_notify-pending_moderation_offers.py -------------------------------------------------------------------------------- /joboffers/tests/test_telegram_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/tests/test_telegram_api.py -------------------------------------------------------------------------------- /joboffers/tests/test_twitter_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/tests/test_twitter_publisher.py -------------------------------------------------------------------------------- /joboffers/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/tests/test_utils.py -------------------------------------------------------------------------------- /joboffers/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/tests/test_views.py -------------------------------------------------------------------------------- /joboffers/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/tests/utils.py -------------------------------------------------------------------------------- /joboffers/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/urls.py -------------------------------------------------------------------------------- /joboffers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/utils.py -------------------------------------------------------------------------------- /joboffers/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/joboffers/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/manage.py -------------------------------------------------------------------------------- /news/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /news/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/news/admin.py -------------------------------------------------------------------------------- /news/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/news/forms.py -------------------------------------------------------------------------------- /news/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/news/migrations/0001_initial.py -------------------------------------------------------------------------------- /news/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /news/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/news/models.py -------------------------------------------------------------------------------- /news/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /news/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/news/tests/factories.py -------------------------------------------------------------------------------- /news/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/news/urls.py -------------------------------------------------------------------------------- /news/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/news/views.py -------------------------------------------------------------------------------- /prod_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/prod_requirements.txt -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /pyarweb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pyarweb/__init__.py -------------------------------------------------------------------------------- /pyarweb/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pyarweb/celery.py -------------------------------------------------------------------------------- /pyarweb/formats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyarweb/formats/es_AR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyarweb/formats/es_AR/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pyarweb/formats/es_AR/formats.py -------------------------------------------------------------------------------- /pyarweb/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pyarweb/forms.py -------------------------------------------------------------------------------- /pyarweb/gunicorn_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pyarweb/gunicorn_cfg.py -------------------------------------------------------------------------------- /pyarweb/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyarweb/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pyarweb/settings/base.py -------------------------------------------------------------------------------- /pyarweb/settings/development/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pyarweb/settings/development/__init__.py -------------------------------------------------------------------------------- /pyarweb/settings/production/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pyarweb/settings/production/__init__.py -------------------------------------------------------------------------------- /pyarweb/settings/staging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pyarweb/settings/staging/__init__.py -------------------------------------------------------------------------------- /pyarweb/tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pyarweb/tests/fixtures.py -------------------------------------------------------------------------------- /pyarweb/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pyarweb/urls.py -------------------------------------------------------------------------------- /pyarweb/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pyarweb/views.py -------------------------------------------------------------------------------- /pyarweb/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pyarweb/wsgi.py -------------------------------------------------------------------------------- /pycompanies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycompanies/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pycompanies/admin.py -------------------------------------------------------------------------------- /pycompanies/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pycompanies/forms.py -------------------------------------------------------------------------------- /pycompanies/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pycompanies/migrations/0001_initial.py -------------------------------------------------------------------------------- /pycompanies/migrations/0002_company_rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pycompanies/migrations/0002_company_rank.py -------------------------------------------------------------------------------- /pycompanies/migrations/0003_usercompanyprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pycompanies/migrations/0003_usercompanyprofile.py -------------------------------------------------------------------------------- /pycompanies/migrations/0004_alter_usercompanyprofile_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pycompanies/migrations/0004_alter_usercompanyprofile_user.py -------------------------------------------------------------------------------- /pycompanies/migrations/0005_company_owner_to_usercompanyprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pycompanies/migrations/0005_company_owner_to_usercompanyprofile.py -------------------------------------------------------------------------------- /pycompanies/migrations/0006_remove_company_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pycompanies/migrations/0006_remove_company_owner.py -------------------------------------------------------------------------------- /pycompanies/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycompanies/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pycompanies/models.py -------------------------------------------------------------------------------- /pycompanies/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycompanies/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pycompanies/tests/factories.py -------------------------------------------------------------------------------- /pycompanies/tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pycompanies/tests/fixtures.py -------------------------------------------------------------------------------- /pycompanies/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pycompanies/tests/test_views.py -------------------------------------------------------------------------------- /pycompanies/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pycompanies/urls.py -------------------------------------------------------------------------------- /pycompanies/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pycompanies/views.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/bootstrap/3.1.1/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/bootstrap/3.1.1/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/bootstrap/3.1.1/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/bootstrap/3.1.1/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/bootstrap/3.1.1/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/bootstrap/3.1.1/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/bootstrap/3.1.1/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/bootstrap/3.1.1/css/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/3.1.1/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/bootstrap/3.1.1/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/bootstrap/3.1.1/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/bootstrap/3.1.1/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/bootstrap/3.1.1/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/bootstrap/3.1.1/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/bootstrap/3.1.1/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/bootstrap/3.1.1/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/bootstrap/3.1.1/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/bootstrap/3.1.1/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/bootstrap/3.1.1/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/bootstrap/3.1.1/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/bootstrap/3.1.1/js/bootstrap-growl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/bootstrap/3.1.1/js/bootstrap-growl.min.js -------------------------------------------------------------------------------- /static/bootstrap/3.1.1/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/bootstrap/3.1.1/js/bootstrap.js -------------------------------------------------------------------------------- /static/bootstrap/3.1.1/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/bootstrap/3.1.1/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/css/animate.css -------------------------------------------------------------------------------- /static/css/event_map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/css/event_map.css -------------------------------------------------------------------------------- /static/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/css/search.css -------------------------------------------------------------------------------- /static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/css/styles.css -------------------------------------------------------------------------------- /static/img/azure-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/img/azure-footer.png -------------------------------------------------------------------------------- /static/img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/img/banner.png -------------------------------------------------------------------------------- /static/img/icons/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/img/icons/icons.png -------------------------------------------------------------------------------- /static/img/icons/icons_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/img/icons/icons_active.png -------------------------------------------------------------------------------- /static/img/icons/pyar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/img/icons/pyar.ico -------------------------------------------------------------------------------- /static/img/logo-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/img/logo-header.png -------------------------------------------------------------------------------- /static/img/moin-www.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/img/moin-www.png -------------------------------------------------------------------------------- /static/img/pyar-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/img/pyar-footer.png -------------------------------------------------------------------------------- /static/img/python-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/img/python-banner.png -------------------------------------------------------------------------------- /static/img/python-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/img/python-footer.png -------------------------------------------------------------------------------- /static/img/ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/img/ribbon.png -------------------------------------------------------------------------------- /static/jquery-autosuggest/css/autoSuggest-grappelli.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/jquery-autosuggest/css/autoSuggest-grappelli.css -------------------------------------------------------------------------------- /static/jquery-autosuggest/css/autoSuggest.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/jquery-autosuggest/css/autoSuggest.css -------------------------------------------------------------------------------- /static/jquery-autosuggest/js/jquery.autoSuggest.minified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/jquery-autosuggest/js/jquery.autoSuggest.minified.js -------------------------------------------------------------------------------- /static/jquery/1.11.0/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/jquery/1.11.0/jquery.min.js -------------------------------------------------------------------------------- /static/js/joboffer_track.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/js/joboffer_track.js -------------------------------------------------------------------------------- /static/js/tag_filtering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/js/tag_filtering.js -------------------------------------------------------------------------------- /static/js/web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/static/js/web.js -------------------------------------------------------------------------------- /templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/403.html -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/500.html -------------------------------------------------------------------------------- /templates/account/base.html: -------------------------------------------------------------------------------- 1 | {% extends "base_site.html" %} 2 | 3 | 4 | -------------------------------------------------------------------------------- /templates/account/email_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/account/email_confirm.html -------------------------------------------------------------------------------- /templates/account/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/account/login.html -------------------------------------------------------------------------------- /templates/account/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/account/logout.html -------------------------------------------------------------------------------- /templates/account/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/account/password_reset.html -------------------------------------------------------------------------------- /templates/account/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/account/password_reset_done.html -------------------------------------------------------------------------------- /templates/account/password_reset_from_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/account/password_reset_from_key.html -------------------------------------------------------------------------------- /templates/account/password_reset_from_key_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/account/password_reset_from_key_done.html -------------------------------------------------------------------------------- /templates/account/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/account/signup.html -------------------------------------------------------------------------------- /templates/account/signup_closed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/account/signup_closed.html -------------------------------------------------------------------------------- /templates/account/verification_sent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/account/verification_sent.html -------------------------------------------------------------------------------- /templates/buscador.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/buscador.html -------------------------------------------------------------------------------- /templates/companies/_user_actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/companies/_user_actions.html -------------------------------------------------------------------------------- /templates/companies/company_admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/companies/company_admin.html -------------------------------------------------------------------------------- /templates/companies/company_analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/companies/company_analytics.html -------------------------------------------------------------------------------- /templates/companies/company_association_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/companies/company_association_list.html -------------------------------------------------------------------------------- /templates/companies/company_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/companies/company_confirm_delete.html -------------------------------------------------------------------------------- /templates/companies/company_confirm_disassociate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/companies/company_confirm_disassociate.html -------------------------------------------------------------------------------- /templates/companies/company_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/companies/company_detail.html -------------------------------------------------------------------------------- /templates/companies/company_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/companies/company_form.html -------------------------------------------------------------------------------- /templates/companies/company_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/companies/company_list.html -------------------------------------------------------------------------------- /templates/email_confirm_la/email/email_confirmation_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/email_confirm_la/email/email_confirmation_message.html -------------------------------------------------------------------------------- /templates/email_confirm_la/email/email_confirmation_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/email_confirm_la/email/email_confirmation_subject.txt -------------------------------------------------------------------------------- /templates/email_confirm_la/email_confirmation_expiration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/email_confirm_la/email_confirmation_expiration.html -------------------------------------------------------------------------------- /templates/email_confirm_la/email_confirmation_fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/email_confirm_la/email_confirmation_fail.html -------------------------------------------------------------------------------- /templates/email_confirm_la/email_confirmation_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/email_confirm_la/email_confirmation_success.html -------------------------------------------------------------------------------- /templates/events/event_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/events/event_confirm_delete.html -------------------------------------------------------------------------------- /templates/events/event_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/events/event_detail.html -------------------------------------------------------------------------------- /templates/events/event_detail_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/events/event_detail_body.html -------------------------------------------------------------------------------- /templates/events/event_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/events/event_form.html -------------------------------------------------------------------------------- /templates/events/event_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/events/event_list.html -------------------------------------------------------------------------------- /templates/events/eventparticipation_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/events/eventparticipation_confirm_delete.html -------------------------------------------------------------------------------- /templates/events/eventparticipation_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/events/eventparticipation_form.html -------------------------------------------------------------------------------- /templates/events/eventparticipation_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/events/eventparticipation_list.html -------------------------------------------------------------------------------- /templates/events/next_events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/events/next_events.html -------------------------------------------------------------------------------- /templates/irc/irc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/irc/irc.html -------------------------------------------------------------------------------- /templates/jobs/_jobs_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/jobs/_jobs_tags.html -------------------------------------------------------------------------------- /templates/jobs/inactivate_job_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/jobs/inactivate_job_email.txt -------------------------------------------------------------------------------- /templates/jobs/job_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/jobs/job_confirm_delete.html -------------------------------------------------------------------------------- /templates/jobs/job_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/jobs/job_detail.html -------------------------------------------------------------------------------- /templates/jobs/job_detail_feed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/jobs/job_detail_feed.html -------------------------------------------------------------------------------- /templates/jobs/job_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/jobs/job_form.html -------------------------------------------------------------------------------- /templates/jobs/job_inactivate_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/jobs/job_inactivate_form.html -------------------------------------------------------------------------------- /templates/jobs/job_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/jobs/job_list.html -------------------------------------------------------------------------------- /templates/jobs/job_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/jobs/job_overview.html -------------------------------------------------------------------------------- /templates/jobs/jobs_by_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/jobs/jobs_by_user.html -------------------------------------------------------------------------------- /templates/news/_news_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/news/_news_tags.html -------------------------------------------------------------------------------- /templates/news/newsarticle_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/news/newsarticle_confirm_delete.html -------------------------------------------------------------------------------- /templates/news/newsarticle_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/news/newsarticle_detail.html -------------------------------------------------------------------------------- /templates/news/newsarticle_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/news/newsarticle_form.html -------------------------------------------------------------------------------- /templates/news/newsarticle_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/news/newsarticle_list.html -------------------------------------------------------------------------------- /templates/registration/activate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/registration/activate.html -------------------------------------------------------------------------------- /templates/registration/activation_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/registration/activation_complete.html -------------------------------------------------------------------------------- /templates/registration/activation_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/registration/activation_email.txt -------------------------------------------------------------------------------- /templates/registration/activation_email_subject.txt: -------------------------------------------------------------------------------- 1 | Activar su nueva cuenta en PyAr 2 | -------------------------------------------------------------------------------- /templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/registration/login.html -------------------------------------------------------------------------------- /templates/registration/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/registration/logout.html -------------------------------------------------------------------------------- /templates/registration/registration_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/registration/registration_complete.html -------------------------------------------------------------------------------- /templates/registration/registration_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/registration/registration_form.html -------------------------------------------------------------------------------- /templates/special_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/special_page.html -------------------------------------------------------------------------------- /templates/waliki/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/waliki/403.html -------------------------------------------------------------------------------- /templates/waliki/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/waliki/detail.html -------------------------------------------------------------------------------- /templates/waliki/whatchanged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyAr/pyarweb/HEAD/templates/waliki/whatchanged.html --------------------------------------------------------------------------------