--- /dev/null
+from django.contrib import admin
+from .models import Profile, Donkey, Sponsorship, Post
+
+@admin.register(Profile)
+class ProfileAdmin(admin.ModelAdmin):
+ list_display = ('name', 'description')
+
+
+@admin.register(Donkey)
+class DonkeyAdmin(admin.ModelAdmin):
+ list_display = ('name', 'race', 'location', 'owner')
+ search_fields = ('name', 'race')
+
+@admin.register(Sponsorship)
+class SponsorshipAdmin(admin.ModelAdmin):
+ list_display = ('user', 'donkey', 'amount', 'start_date')
+ list_filter = ('start_date', 'type')
+
+@admin.register(Post)
+class PostAdmin(admin.ModelAdmin):
+ list_display = ('donkey', 'date', 'description_snippet')
+ readonly_fields = ('date',)
+
+ def description_snippet(self, obj):
+ return obj.description[:50] + "..."
\ No newline at end of file
--- /dev/null
+from django.apps import AppConfig
+
+
+class CoreConfig(AppConfig):
+ name = 'core'
--- /dev/null
+from django import forms
+from django.contrib.auth.models import User
+from django.contrib.auth.forms import UserCreationForm, AuthenticationForm
+from .models import UserExtension
+
+# Form 1: Secure Registration
+# Combines standard Django User creation with sketch fields
+class UnifiedRegisterForm(UserCreationForm):
+ # Required standard User fields as per sketch
+ email = forms.EmailField(required=True)
+ first_name = forms.CharField(required=True, label="* Name")
+
+ # Required UserExtension fields from sketch
+ user_type = forms.ChoiceField(choices=UserExtension.USER_TYPE_CHOICES, label="* TIPO")
+ gender = forms.CharField(required=True, label="* SEXO")
+ # DateField with HTML5 widget for better UI/Security
+ date_of_birth = forms.DateField(required=True, label="* DATA DE NASC.", widget=forms.DateInput(attrs={'type': 'date'}))
+
+ class Meta(UserCreationForm.Meta):
+ # We must manually list the fields we want to extend beyond standard UserCreationForm
+ fields = UserCreationForm.Meta.fields + ('email', 'first_name', 'user_type', 'gender', 'date_of_birth',)
+
+ def save(self, commit=True):
+ # 1. Save standard User object
+ user = super().save(commit=False)
+ user.email = self.cleaned_data['email']
+ user.first_name = self.cleaned_data['first_name']
+ if commit:
+ user.save()
+ # 2. Create and Save linked UserExtension with sketch data
+ UserExtension.objects.create(
+ user=user,
+ user_type=self.cleaned_data['user_type'],
+ gender=self.cleaned_data['gender'],
+ date_of_birth=self.cleaned_data['date_of_birth']
+ )
+ return user
+
+# Form 2: Simple Login Form (Standard Django)
+class SketchLoginForm(AuthenticationForm):
+ username = forms.EmailField(label="Email") # Overriding label for sketch consistency
\ No newline at end of file
--- /dev/null
+# Generated by Django 6.0.4 on 2026-05-02 23:30
+
+import django.db.models.deletion
+from django.conf import settings
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Profile',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('name', models.CharField(max_length=100)),
+ ('description', models.TextField()),
+ ],
+ ),
+ migrations.CreateModel(
+ name='Donkey',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('name', models.CharField(max_length=100)),
+ ('race', models.CharField(max_length=100)),
+ ('location', models.CharField(max_length=255)),
+ ('date_of_birth', models.DateField(blank=True, null=True)),
+ ('cover_image', models.ImageField(upload_to='donkey_covers/')),
+ ('owner', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ migrations.CreateModel(
+ name='Post',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('date', models.DateTimeField(auto_now_add=True)),
+ ('description', models.TextField()),
+ ('image_url', models.ImageField(upload_to='posts/')),
+ ('donkey', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='core.donkey')),
+ ],
+ ),
+ migrations.CreateModel(
+ name='Sponsorship',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('type', models.CharField(max_length=50)),
+ ('start_date', models.DateField()),
+ ('amount', models.DecimalField(decimal_places=2, max_digits=10)),
+ ('donkey', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='core.donkey')),
+ ('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ migrations.CreateModel(
+ name='UserExtension',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('gender', models.CharField(blank=True, help_text='*SEXO', max_length=10)),
+ ('date_of_birth', models.DateField(help_text='*DATA DE NASC.')),
+ ('user_type', models.CharField(choices=[('PRODUCER', 'Produtor'), ('NORMAL', 'Normal (Sponsor)')], default='NORMAL', max_length=20)),
+ ('profile', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='core.profile')),
+ ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
--- /dev/null
+from django.db import models
+from django.contrib.auth.models import User
+
+
+class Profile(models.Model):
+ name = models.CharField(max_length=100)
+ description = models.TextField()
+
+ def __str__(self):
+ return self.name
+
+class UserExtension(models.Model):
+ user = models.OneToOneField(User, on_delete=models.CASCADE)
+ gender = models.CharField(max_length=10, blank=True, help_text="*SEXO")
+ date_of_birth = models.DateField(help_text="*DATA DE NASC.")
+ USER_TYPE_CHOICES = [
+ ('PRODUCER', 'Produtor'),
+ ('NORMAL', 'Normal (Sponsor)'),
+ ]
+ user_type = models.CharField(max_length=20, choices=USER_TYPE_CHOICES, default='NORMAL')
+ profile = models.ForeignKey(Profile, on_delete=models.CASCADE, null=True, blank=True)
+
+ def __str__(self):
+ return f"{self.user.username} ({self.user_type})"
+
+class Donkey(models.Model):
+ name = models.CharField(max_length=100)
+ race = models.CharField(max_length=100)
+ location = models.CharField(max_length=255)
+ date_of_birth = models.DateField(null=True, blank=True)
+ owner = models.ForeignKey(User, on_delete=models.CASCADE)
+ cover_image = models.ImageField(upload_to='donkey_covers/')
+
+ def __str__(self):
+ return self.name
+
+class Sponsorship(models.Model):
+ type = models.CharField(max_length=50)
+ start_date = models.DateField()
+ amount = models.DecimalField(max_digits=10, decimal_places=2)
+ user = models.ForeignKey(User, on_delete=models.CASCADE)
+ donkey = models.ForeignKey(Donkey, on_delete=models.CASCADE)
+
+class Post(models.Model):
+ donkey = models.ForeignKey(Donkey, on_delete=models.CASCADE)
+ date = models.DateTimeField(auto_now_add=True)
+ description = models.TextField()
+ image_url = models.ImageField(upload_to='posts/')
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<html lang="pt">
+<head>
+ <meta charset="UTF-8">
+ <title>Burros de Miranda - Home</title>
+ <style>
+ body { font-family: sans-serif; padding: 40px; text-align: center; }
+ .welcome-box { border: 2px solid black; padding: 40px; display: inline-block; }
+ </style>
+</head>
+<body>
+
+ <div class="welcome-box">
+ <h1>Bem-vindo à plataforma Burros de Miranda!</h1>
+ <p>You have successfully reached the homepage.</p>
+
+ <!-- A button to go back and test the login page again -->
+ <br><br>
+ <a href="{% url 'login_register' %}" style="padding: 10px; border: 2px solid black; text-decoration: none; color: black;">Sair / Voltar ao Login</a>
+ </div>
+
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<html lang="pt">
+<head>
+ <meta charset="UTF-8">
+ <title>Burros de Miranda - Acesso</title>
+ <style>
+ body { font-family: sans-serif; display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #f4f4f4; }
+ .platform-box { border: 2px solid black; padding: 40px; background-color: white; width: 600px; text-align: center; }
+ .main-title { font-size: 2em; margin-bottom: 20px; text-transform: uppercase; }
+
+ /* Top Navigation Buttons (Toggles) */
+ .toggle-nav { display: flex; justify-content: center; gap: 20px; border-bottom: 2px dashed gray; padding-bottom: 20px; margin-bottom: 30px; }
+ .toggle-btn { padding: 10px 20px; border: 2px solid black; background-color: white; cursor: pointer; text-transform: uppercase; font-weight: bold; }
+ .toggle-btn.active { background-color: #eee; }
+ .anon-link { border: 2px solid black; background: #fafafa; color: black; text-decoration: none; padding: 10px 20px; }
+
+ /* Unified Form Styling */
+ .forms-container form { display: none; text-align: left; grid-template-columns: 1fr 1fr; gap: 15px 30px; align-items: start;}
+ .forms-container form.active { display: grid; }
+ .form-pair { grid-column: span 1; display: flex; flex-direction: column;}
+
+ /* Full width spanning fields */
+ .forms-container form label[for$="-email"], .forms-container form label[for$="-password"] { grid-column: 1 / 2; }
+
+ label { font-weight: bold; margin-bottom: 5px; text-transform: uppercase;}
+ input, select { border: none; border-bottom: 1px solid black; padding: 5px; outline: none; width: 100%;}
+
+ /* Matching Registration layout from sketch */
+ #register-form .form-pair.right { text-align: right;}
+
+ /* Error messages styling */
+ .errorlist { list-style: none; color: red; padding: 0; font-size: 0.85em;}
+ </style>
+</head>
+<body>
+
+<div class="platform-box">
+ <h1 class="main-title">Burros de Miranda</h1>
+
+ <!-- Phase 1: Main Navigation Toggles (Sketch upper buttons) -->
+ <div class="toggle-nav">
+ <button class="toggle-btn" id="login-toggle" onclick="showForm('login')">Login</button>
+ <button class="toggle-btn" id="register-toggle" onclick="showForm('register')">Registar</button>
+ <!-- Fulfills 'Unregistered users' requirement from compCloud-trab1.pdf[cite: 1] -->
+ <a href="{% url 'homepage' %}" class="anon-link">Entrar como Anónimo</a>
+ </div>
+
+ <!-- Phase 2: Form Container (Sketch lower section) -->
+ <div class="forms-container">
+
+ <!-- --- A. LOGIN FORM --- -->
+ <form id="login-form" method="POST" action="">
+ <!-- SECURITY ESSENTIAL: Protects against CSRF attacks in GCP deployment[cite: 1] -->
+ {% csrf_token %}
+
+ <!-- Output standard Django errors securely -->
+ {% if login_form.non_field_errors %} <div class="non-field-errors">{{ login_form.non_field_errors }}</div> {% endif %}
+
+ <div class="form-pair full"> <label>Email</label> {{ login_form.username }} </div>
+ <div class="form-pair full"> <label>PASSWORD</label> {{ login_form.password }} </div>
+
+ <div class="form-submit full" style="grid-column: span 2; text-align: right; margin-top: 20px;">
+ <button type="submit" name="login_submit" class="toggle-btn">Entrar</button>
+ </div>
+ </form>
+
+ <!-- --- B. REGISTRATION FORM --- -->
+ <form id="register-form" method="POST" action="">
+ {% csrf_token %}
+
+ {% if register_form.non_field_errors %} <div class="non-field-errors">{{ register_form.non_field_errors }}</div> {% endif %}
+
+ <!-- Left Column mapping the Sketch -->
+ <div class="column-left" style="display: flex; flex-direction: column; gap: 15px;">
+ <div class="form-pair"> <label>Email</label> {{ register_form.email }} </div>
+ <div class="form-pair"> <label>PASSWORD</label> {{ register_form.password }} </div>
+ <div class="form-pair"> <label>* SEXO</label> {{ register_form.gender }} </div>
+ </div>
+
+ <!-- Right Column mapping the Sketch (*) fields -->
+ <div class="column-right" style="display: flex; flex-direction: column; gap: 15px; align-items: flex-end; text-align: right;">
+ <div class="form-pair right"> <label>* Name</label> {{ register_form.first_name }} </div>
+ <div class="form-pair right"> <label>* TIPO</label> {{ register_form.user_type }} </div>
+ <div class="form-pair right"> <label>* DATA DE NASC.</label> {{ register_form.date_of_birth }} </div>
+ </div>
+
+ <div class="form-submit" style="grid-column: span 2; text-align: right; margin-top: 20px;">
+ <button type="submit" name="register_submit" class="toggle-btn">Registar</button>
+ </div>
+ </form>
+
+ </div>
+</div>
+
+<!-- JavaScript to handle visual toggling based on active_form from view -->
+<script>
+ function showForm(formName) {
+ // 1. Reset all actives
+ document.querySelectorAll('form, .toggle-btn').forEach(el => el.classList.remove('active'));
+
+ // 2. Activate selected
+ document.getElementById(formName + '-form').classList.add('active');
+ document.getElementById(formName + '-toggle').classList.add('active');
+ }
+
+ // Initialize state on load based on Django's context (e.g., if reloaded with errors)
+ showForm('{{ active_form }}');
+</script>
+
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+from django.test import TestCase
+
+# Create your tests here.
--- /dev/null
+from django.urls import path
+from .views import login_register_view, homepage_view
+
+urlpatterns = [
+ path('', login_register_view, name='login_register'), # Root URL serves login/register
+ path('home/', homepage_view, name='homepage'),
+]
\ No newline at end of file
--- /dev/null
+from django.shortcuts import render, redirect
+from django.contrib.auth import login, authenticate
+from .forms import UnifiedRegisterForm, SketchLoginForm
+
+def login_register_view(request):
+ # Prepare standard empty forms for GET requests
+ login_form = SketchLoginForm()
+ register_form = UnifiedRegisterForm()
+
+ # Track which section should be visible on reload/error
+ active_form = 'login'
+
+ if request.method == 'POST':
+ # Scenario 1: User submitted the REGISTER form
+ if 'register_submit' in request.POST:
+ active_form = 'register'
+ register_form = UnifiedRegisterForm(request.POST)
+ if register_form.is_valid():
+ user = register_form.save()
+ login(request, user) # Auto-login after registration
+ return redirect('homepage') # Define this later
+ # else will reload page with errors displayed
+
+ # Scenario 2: User submitted the LOGIN form
+ elif 'login_submit' in request.POST:
+ active_form = 'login'
+ login_form = SketchLoginForm(request, data=request.POST)
+ if login_form.is_valid():
+ login(request, login_form.get_user())
+ return redirect('homepage') # Define this later
+ # else reloads page displaying authentication errors
+
+ return render(request, 'core/index.html', {
+ 'login_form': login_form,
+ 'register_form': register_form,
+ 'active_form': active_form, # Tells template which tab is active
+ })
+
+def homepage_view(request):
+ return render(request, 'core/home.html', {})
\ No newline at end of file
--- /dev/null
+"""
+ASGI config for donkeys project.
+
+It exposes the ASGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/4.2/howto/deployment/asgi/
+"""
+
+import os
+
+from django.core.asgi import get_asgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'donkeys.settings')
+
+application = get_asgi_application()
--- /dev/null
+"""
+Django settings for donkeys project.
+
+Generated by 'django-admin startproject' using Django 4.2.5.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/4.2/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/4.2/ref/settings/
+"""
+
+from pathlib import Path
+
+# Build paths inside the project like this: BASE_DIR / 'subdir'.
+BASE_DIR = Path(__file__).resolve().parent.parent
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/4.2/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'django-insecure-_k)esovjb!+f4d4x5nekf#i71n57i5%&u1g_3@lm4--mh(poc2'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+ 'core',
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'donkeys.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'donkeys.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/4.2/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': BASE_DIR / 'db.sqlite3',
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/4.2/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/4.2/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/4.2/howto/static-files/
+
+STATIC_URL = 'static/'
+
+# Default primary key field type
+# https://docs.djangoproject.com/en/4.2/ref/settings/#default-auto-field
+
+DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
--- /dev/null
+"""
+URL configuration for donkeys project.
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/4.2/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.urls import path, include
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ # This tells Django: "Forward any web traffic to the 'core' app's routing system"
+ path('', include('core.urls')),
+]
\ No newline at end of file
--- /dev/null
+"""
+WSGI config for donkeys project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/4.2/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'donkeys.settings')
+
+application = get_wsgi_application()