{"id":26436902,"url":"https://github.com/suwansankaja/django-user-preferences","last_synced_at":"2026-04-28T16:01:42.028Z","repository":{"id":275312529,"uuid":"925709701","full_name":"SuwanSankaja/Django-User-Preferences","owner":"SuwanSankaja","description":"Full Stack Web App for User Profile Management","archived":false,"fork":false,"pushed_at":"2025-03-01T13:53:12.000Z","size":708,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-16T12:58:58.091Z","etag":null,"topics":["django","html","javascript","jinja-template","python","sqlite"],"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/SuwanSankaja.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-02-01T14:57:58.000Z","updated_at":"2025-03-01T13:53:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"79818e91-0d2c-4177-b6ad-035f58faa1f2","html_url":"https://github.com/SuwanSankaja/Django-User-Preferences","commit_stats":null,"previous_names":["suwansankaja/django-user-preferences"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SuwanSankaja/Django-User-Preferences","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SuwanSankaja%2FDjango-User-Preferences","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SuwanSankaja%2FDjango-User-Preferences/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SuwanSankaja%2FDjango-User-Preferences/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SuwanSankaja%2FDjango-User-Preferences/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SuwanSankaja","download_url":"https://codeload.github.com/SuwanSankaja/Django-User-Preferences/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SuwanSankaja%2FDjango-User-Preferences/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32387923,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T14:34:11.604Z","status":"ssl_error","status_checked_at":"2026-04-28T14:32:37.009Z","response_time":56,"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","html","javascript","jinja-template","python","sqlite"],"created_at":"2025-03-18T08:19:08.320Z","updated_at":"2026-04-28T16:01:42.023Z","avatar_url":"https://github.com/SuwanSankaja.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 User Profile Management System\n\nThis project is a **Django-based User Profile Management System** that allows users to register, log in, update their profiles, and manage user-related data.\n\n---\n\n## 🎯 Features\n\n✅ **User Authentication**: Sign-up, login, and logout functionality.  \n✅ **Profile Management**: Users can update their profile information, including profile pictures.  \n✅ **Admin Panel**: Built-in Django admin interface for user management.  \n✅ **Media Uploads**: Profile pictures and other media uploads supported.  \n✅ **Secure Authentication**: Password hashing and validation mechanisms.  \n✅ **Django Forms \u0026 Validation**: For secure and validated user input.  \n\n---\n\n## ⚡ Installation Guide\n\n### 📌 Prerequisites\n\nEnsure you have the following installed:\n\n- 🐍 Python (\u003e=3.8)\n- 📦 pip (Python package manager)\n- 🌍 Virtual environment (`venv` or `virtualenv`)\n- 📊 SQLite (Pre-installed with Django)\n\n### 🛠️ Setup Steps\n\n1️⃣ **Clone the Repository**  \n\n   ```sh\n   git clone https://github.com/SuwanSankaja/Django-User-Preferences.git\n   cd user_profile_project\n   ```\n\n2️⃣ **Create and Activate a Virtual Environment**  \n\n   ```sh\n   python -m venv venv\n   source venv/bin/activate  # On macOS/Linux\n   venv\\Scripts\\activate   # On Windows\n   ```\n\n3️⃣ **Install Dependencies**  \n\n   ```sh\n   pip install -r requirements.txt\n   ```\n\n4️⃣ **Apply Migrations**  \n\n   ```sh\n   python manage.py migrate\n   ```\n\n5️⃣ **Create a Superuser (Admin Access)**  \n\n   ```sh\n   python manage.py createsuperuser\n   ```\n\n6️⃣ **Run the Development Server**  \n\n   ```sh\n   python manage.py runserver\n   ```\n\n7️⃣ **Access the Application**  \n\n   - 🌍 Main App: [`http://127.0.0.1:8000/`](http://127.0.0.1:8000/)  \n   - 🔑 Admin Panel: [`http://127.0.0.1:8000/admin/`](http://127.0.0.1:8000/admin/)  \n\n---\n\n## 🏗️ Project Structure\n\n📂 **user_profile_project/**  \n├── 📂 `users/` - User management app  \n│   ├── 📂 `migrations/` - Database migrations  \n│   ├── 📂 `templates/` - HTML Templates for views  \n│   ├── 📂 `static/` - Static files (CSS, JS, images)  \n│   ├── 📄 `views.py` - View logic for users  \n│   ├── 📄 `models.py` - Database models  \n│   ├── 📄 `forms.py` - User forms for authentication  \n│   ├── 📄 `admin.py` - Django admin configurations  \n├── 📂 `media/` - Uploaded user media files  \n├── 📄 `db.sqlite3` - SQLite database file  \n├── 📄 `manage.py` - Django project manager  \n└── 📂 `user_profile_project/` - Main project configuration  \n\n---\n\n\n## 🤝 Contribution Guidelines\n\n1️⃣ **Fork the repository** and create a new branch.  \n2️⃣ Make your changes and ensure everything works.  \n3️⃣ Run the tests before committing.  \n4️⃣ Submit a pull request for review.  \n\n---\n\n### Home Page\n\u003cimg src=\"https://filedn.eu/lKBQ3k74oxYj0kgKuxh2wfS/Jahan_AI_Django_User_Preference_Interface/home_page.png\" width=\"700\"\u003e\n\n### Register Page\n\u003cimg src=\"https://filedn.eu/lKBQ3k74oxYj0kgKuxh2wfS/Jahan_AI_Django_User_Preference_Interface/register_updated.png\" width=\"700\"\u003e\n\n### Login Page\n\u003cimg src=\"https://filedn.eu/lKBQ3k74oxYj0kgKuxh2wfS/Jahan_AI_Django_User_Preference_Interface/login_page.png\" width=\"700\"\u003e\n\n### User Preference Update Page\n\u003cimg src=\"https://filedn.eu/lKBQ3k74oxYj0kgKuxh2wfS/Jahan_AI_Django_User_Preference_Interface/user_preference_update_page_updated.png\" width=\"800\"\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuwansankaja%2Fdjango-user-preferences","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsuwansankaja%2Fdjango-user-preferences","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuwansankaja%2Fdjango-user-preferences/lists"}