{"id":26951650,"url":"https://github.com/derek486/django-events-management","last_synced_at":"2026-05-04T20:35:40.528Z","repository":{"id":247007155,"uuid":"705423416","full_name":"Derek486/django-events-management","owner":"Derek486","description":"A web-based event management system built with Django","archived":false,"fork":false,"pushed_at":"2025-03-25T19:53:53.000Z","size":1819,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-15T03:41:32.205Z","etag":null,"topics":["django","pillow","sqlite"],"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/Derek486.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":"2023-10-16T01:04:43.000Z","updated_at":"2025-03-25T19:54:09.000Z","dependencies_parsed_at":"2025-03-25T20:44:17.456Z","dependency_job_id":"57009a0b-2d60-44c3-9013-cec52e6c028a","html_url":"https://github.com/Derek486/django-events-management","commit_stats":null,"previous_names":["derek486/django-events","derek486/django-events-management"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Derek486/django-events-management","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Derek486%2Fdjango-events-management","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Derek486%2Fdjango-events-management/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Derek486%2Fdjango-events-management/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Derek486%2Fdjango-events-management/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Derek486","download_url":"https://codeload.github.com/Derek486/django-events-management/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Derek486%2Fdjango-events-management/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32624289,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"ssl_error","status_checked_at":"2026-05-04T10:08:02.005Z","response_time":58,"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","pillow","sqlite"],"created_at":"2025-04-03T00:17:00.525Z","updated_at":"2026-05-04T20:35:40.512Z","avatar_url":"https://github.com/Derek486.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📅 Event Management System\n\n![Django](https://img.shields.io/badge/Django-green?style=for-the-badge\u0026logo=django) ![SQLite](https://img.shields.io/badge/SQLite-blue?style=for-the-badge\u0026logo=sqlite)  \n\nA web-based event management system built with Django, allowing users to create, manage, and participate in events.\n\n---\n\n## 🌟 Features\n\n✅ **User Authentication** – Register and log in securely.  \n✅ **Event Creation** – Users can create and manage events.  \n✅ **Event Registration** – Users can sign up for events.  \n✅ **Sorting \u0026 Filtering** – Events can be organized by date, name, or organizer.  \n✅ **Image Upload** – Events can have cover images stored in the `media/` directory.  \n\n---\n\n## 🏗️ Installation\n\n### 1️⃣ Clone the Repository\n```bash\n$ git clone https://github.com/Derek486/django-events-management.git\n$ cd django-events-management\n```\n\n### 2️⃣ Create a Virtual Environment \u0026 Install Dependencies\n```bash\n$ python -m venv venv\n$ source venv/bin/activate  # On Windows use `venv\\Scripts\\activate`\n$ pip install -r requirements.txt\n```\n\n### 3️⃣ Apply Migrations \u0026 Run the Server\n```bash\n$ python manage.py migrate\n$ python manage.py runserver\n```\n\n### 4️⃣ Access the Application\nGo to [http://127.0.0.1:8000/](http://127.0.0.1:8000/) in your browser.\n\n---\n\n## 🏛️ Project Structure\n```\n.\n├── eventos\n│   ├── models.py    # Database models\n│   ├── views.py     # Views for handling requests\n│   ├── urls.py      # URL routing\n│   ├── templates/   # HTML templates\n│   └── static/      # CSS, JS, and images\n├── events_management_app\n│   ├── settings.py  # Django settings\n│   ├── urls.py      # Root URL configuration\n│   └── wsgi.py      # WSGI entry point\n├── media\n│   ├── portadas_eventos/  # Event cover images\n├── db.sqlite3       # SQLite database\n└── manage.py        # Django command-line utility\n```\n\n---\n\n## 📜 Database Models\n\n### 👤 User (`Usuario`)\n```python\nclass Usuario(AbstractUser):\n    email = models.EmailField(unique=True)\n```\n\n### 🎟️ Event (`Evento`)\n```python\nclass Evento(models.Model):\n    autor = models.ForeignKey(Usuario, on_delete=models.CASCADE)\n    nombre = models.CharField(max_length=100)\n    descripcion = models.TextField()\n    fecha = models.DateField()\n    portada = models.ImageField(upload_to='portadas_eventos/', null=True, blank=True)\n```\n\n### 📝 Registration (`RegistroEvento`)\n```python\nclass RegistroEvento(models.Model):\n    usuario = models.ForeignKey(Usuario, on_delete=models.CASCADE)\n    evento = models.ForeignKey(Evento, on_delete=models.CASCADE)\n    fecha_registro = models.DateTimeField(auto_now_add=True)\n```\n\n---\n\n## 🖼️ Preview\n\n### 📌 Event Listings \u0026 Details\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"preview/eventos_list.png\" alt=\"Event List\" width=\"45%\"\u003e\n  \u003cimg src=\"preview/evento_show.png\" alt=\"Event Details\" width=\"45%\"\u003e\n\u003c/p\u003e\n\n### 🎉 Create \u0026 Manage Events\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"preview/eventos_create.png\" alt=\"Create Event\" width=\"45%\"\u003e\n  \u003cimg src=\"preview/evento_admin.png\" alt=\"Admin Panel\" width=\"45%\"\u003e\n\u003c/p\u003e\n\n### 🔐 User Authentication\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"preview/login.png\" alt=\"Login\" width=\"45%\"\u003e\n  \u003cimg src=\"preview/register.png\" alt=\"Register\" width=\"45%\"\u003e\n\u003c/p\u003e\n\n---\n\n## 📜 License\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fderek486%2Fdjango-events-management","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fderek486%2Fdjango-events-management","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fderek486%2Fdjango-events-management/lists"}