{"id":21151642,"url":"https://github.com/alina1412/survey_django","last_synced_at":"2026-04-27T00:31:41.749Z","repository":{"id":46170356,"uuid":"514782842","full_name":"alina1412/survey_django","owner":"alina1412","description":"A django application for surveys, which allows users to create surveys and answer surverys of other users.","archived":false,"fork":false,"pushed_at":"2022-11-15T04:18:30.000Z","size":1005,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-03T09:07:17.210Z","etag":null,"topics":["django","heroku-deployment","python","sql"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alina1412.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-07-17T08:04:39.000Z","updated_at":"2022-10-28T08:27:17.000Z","dependencies_parsed_at":"2023-01-23T04:00:59.814Z","dependency_job_id":null,"html_url":"https://github.com/alina1412/survey_django","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/alina1412/survey_django","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alina1412%2Fsurvey_django","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alina1412%2Fsurvey_django/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alina1412%2Fsurvey_django/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alina1412%2Fsurvey_django/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alina1412","download_url":"https://codeload.github.com/alina1412/survey_django/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alina1412%2Fsurvey_django/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32318417,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"ssl_error","status_checked_at":"2026-04-26T23:26:25.802Z","response_time":129,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django","heroku-deployment","python","sql"],"created_at":"2024-11-20T10:18:00.556Z","updated_at":"2026-04-27T00:31:41.744Z","avatar_url":"https://github.com/alina1412.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cbody\u003e\n        \n# Survey app (django)\n        \n\n## Description\nIt's a django web-application. The site allows user to create surveys and answer surverys of other users.\n\nThe site is/(was) deployed here: https://survey-django-app.herokuapp.com/survey/home/\n\n## How it worked (from the frontend look)\nvideo:  \n[![Watch the video](https://img.youtube.com/vi/YyxVe2knm9k/1.jpg)](https://youtu.be/YyxVe2knm9k)\n \n\n## Notes\npython 3.9 used (before type notations)\n\nTests are made to run with:\n```\npytest-django == 4.5.2\npytest-cov == 3.0.0\n\npytest -vs .\n```\n\n## Structure\nThe app can use `sqlite` or `postgres` database, it keeps data in tables: Survey, Question, Choice, Answer with models for each of them.\nFor keeping Users it takes a model from django.contrib.auth.models.\n\n### Models\n\u003cimg src=\"https://user-images.githubusercontent.com/8655093/198866948-5690511c-6c0f-45b6-9c37-95e0424db625.jpg\" height=\"250\"\u003e \u003c/img\u003e\n\n### Tables\npicture of some tables (except of a default django tables, auth_user - is a default one)\n\u003cimg src=\"https://user-images.githubusercontent.com/8655093/198867044-4c7ba45b-c66e-4f7e-8599-2a96ad472dbd.jpg\" height=\"310\"\u003e \u003c/img\u003e\n\n\n\n\u003cdetails close=\"\"\u003e\n\u003csummary\u003e  \n        \n### Structure tree\n```\nsurvey_django/\n|\n|\n```\n        \n\n\u003c/summary\u003e \n        \n```\n        \n|   .env\n|   .env-example\n|   .gitignore\n|   .pylintrc\n|   docker-compose.yml\n|   Makefile\n|   manage.py\n|   poetry.lock\n|   Procfile\n|   pyproject.toml\n|   pytest.ini\n|   README.md\n|   requirements.txt\n|   runtime.txt\n|   \n|       \n+---static\n|   |   __init__.py\n|   |   \n|   +---css\n|   |       styles.css\n|   |       \n|   +---images\n|   |       favicon.ico\n|   |       results-example.jpg\n|   |       survey-detail-example.jpg\n|   |       your-list-example.jpg\n|   |       \n|   \\---templates\n|           add_template.html\n|           answer.html\n|           base.html\n|           home.html\n|           login.html\n|           messages.html\n|           question_detail.html\n|           register.html\n|           results.html\n|           surveys_list.html\n|           surveys_to_pass_list.html\n|           survey_detail.html\n|           \n+---survey_app\n|   |   admin.py\n|   |   apps.py\n|   |   crud.py\n|   |   download.py\n|   |   forms.py\n|   |   models.py\n|   |   urls.py\n|   |   __init__.py\n|   |   \n|   +---migrations\n|   |       0001_initial.py\n|   |       __init__.py\n|   |       \n|   +---tests\n|   |       conftest.py\n|   |       tests.py\n|   |       test_urls.py\n|   |       utils.py\n|   |       \n|   \\---views\n|           utils.py\n|           views.py\n|           views_choices_answers.py\n|           views_questions.py\n|           views_survey.py\n|           view_mixin.py\n|           \n\\---survey_project\n        asgi.py\n        settings.py\n        tests.py\n        urls.py\n        wsgi.py\n        __init__.py\n        \n ```\n        \n\u003c/details\u003e\n\n\n## Example of pages\n        \n \u003cdiv\u003e\n   \n \u003cimg src=\"https://user-images.githubusercontent.com/8655093/179979528-a8929f24-56fc-4b48-a759-0b3d461d38e8.jpg\" height=\"300\"\u003e \u003c/img\u003e\n \u003cimg src=\"https://user-images.githubusercontent.com/8655093/179979519-b02dda72-7606-4d3b-8b6a-23a845f80f14.jpg\" height=\"300\"\u003e \u003c/img\u003e\n  \n \u003cimg src=\"https://user-images.githubusercontent.com/8655093/179979529-27a16627-6185-4434-a0ce-6ef5b08722b2.jpg\" height=\"250\"\u003e \u003c/img\u003e\n   \n\u003c/div\u003e\n  \n\n\u003c/body\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falina1412%2Fsurvey_django","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falina1412%2Fsurvey_django","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falina1412%2Fsurvey_django/lists"}