{"id":22967834,"url":"https://github.com/ibensusan/bookmark-manager-web-app","last_synced_at":"2026-05-03T16:31:37.849Z","repository":{"id":258259298,"uuid":"871096240","full_name":"iBensusan/Bookmark-Manager-Web-App","owner":"iBensusan","description":"Bookmark Manager Web App using Django and Bootstrap","archived":false,"fork":false,"pushed_at":"2024-10-11T10:09:19.000Z","size":8,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-02T05:19:19.655Z","etag":null,"topics":["backend","bootstrap","django","frameworks","frontend","html","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iBensusan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2024-10-11T09:06:31.000Z","updated_at":"2024-10-13T12:43:09.000Z","dependencies_parsed_at":"2024-10-18T07:02:32.010Z","dependency_job_id":null,"html_url":"https://github.com/iBensusan/Bookmark-Manager-Web-App","commit_stats":null,"previous_names":["ibensusan/bookmark-manager-web-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/iBensusan/Bookmark-Manager-Web-App","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iBensusan%2FBookmark-Manager-Web-App","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iBensusan%2FBookmark-Manager-Web-App/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iBensusan%2FBookmark-Manager-Web-App/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iBensusan%2FBookmark-Manager-Web-App/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iBensusan","download_url":"https://codeload.github.com/iBensusan/Bookmark-Manager-Web-App/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iBensusan%2FBookmark-Manager-Web-App/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32577119,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"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":["backend","bootstrap","django","frameworks","frontend","html","python3"],"created_at":"2024-12-14T21:14:54.423Z","updated_at":"2026-05-03T16:31:37.834Z","avatar_url":"https://github.com/iBensusan.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bookmark Manager Web App\n\n## Description\n\nThis project is a Bookmark Manager Web App developed using **Django** for the back-end and **Bootstrap** for the front-end styling. The main function of the app is to allow users to add, view, and delete website bookmarks.\n\n## Features\n\n- Add new bookmarks (title and URL).\n- View a list of saved bookmarks.\n- Delete bookmarks from the list.\n- Responsive and clean design using Bootstrap.\n\n## Project Structure\n\nThe project follows a typical Django structure with a main app called `bookmarks` that handles all bookmark-related functionality.\n\n- **Backend**:\n  - `bookmarks/models.py`: Defines the `Bookmark` model, which stores the title and URL of each bookmark.\n  - `bookmarks/views.py`: Manages the logic for displaying, adding, and deleting bookmarks.\n  - `bookmarks/urls.py`: Maps URLs to the appropriate views.\n  \n- **Frontend**:\n  - `bookmarks/templates/bookmarks/bookmark_list.html`: The HTML file that uses **Bootstrap** to display the user interface, such as forms and lists.\n\n## Development\n\n### 1. **Django Backend**:\nThe backend is powered by Django. A simple `Bookmark` model is used to store the title and URL of each bookmark. The model looks like this:\n\n### 2. **Bootstrap Frontend**:\n\nThe user interface is styled using **Bootstrap**, a popular CSS framework. This helps provide a clean and responsive design without the need for custom CSS. The main Bootstrap components used include:\n\n- **Form Controls**: The form fields (title and URL) are styled using Bootstrap's `form-control` class for a consistent appearance.\n- **Buttons**: Buttons for adding and deleting bookmarks are styled using the `btn` and `btn-primary` (for adding) and `btn-danger` (for deleting) classes.\n- **List Group**: The saved bookmarks are displayed in a styled list using Bootstrap's `list-group` and `list-group-item` classes to ensure a clean, organized layout.\n\n### 3. **How It Works**:\n\n- Users can add a new bookmark by entering a title and URL and clicking the **Add Bookmark** button.\n- The saved bookmarks are displayed as a list below the form, where each bookmark is a clickable link that opens in a new tab.\n- Each bookmark has a **Delete** button that allows users to remove it from the list.\n\n## How to Run the Project\n\n1. Clone the repository to your local machine.\n2. Install the required dependencies using `pip install -r requirements.txt`.\n3. Run migrations to set up the database: `python manage.py migrate`.\n4. Start the development server: `python manage.py runserver`.\n5. Open the app in your browser at `http://127.0.0.1:8000/`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fibensusan%2Fbookmark-manager-web-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fibensusan%2Fbookmark-manager-web-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fibensusan%2Fbookmark-manager-web-app/lists"}