Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8a0335fabc | |||
| 74b9d3bbc6 | |||
| ffe7828d8e | |||
| a12954fb84 | |||
| 7f50674bb8 |
@@ -1,15 +1,9 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "uv"
|
||||
- package-ecosystem: "pip"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
interval: "daily"
|
||||
allow:
|
||||
- dependency-type: "direct"
|
||||
open-pull-requests-limit: 10
|
||||
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
open-pull-requests-limit: 10
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# UV Config file
|
||||
[project]
|
||||
name = "proyecto-final"
|
||||
version = "0.1.0"
|
||||
|
||||
@@ -4,6 +4,8 @@ from django.contrib.auth import authenticate, login as auth_login, logout as aut
|
||||
from django.db.utils import DataError
|
||||
from django.contrib.auth.decorators import login_required
|
||||
from django.contrib import messages
|
||||
|
||||
from tienda.utilities import send_email
|
||||
from .models import User, Product, Category, Cart, CartItem, Image, Order, OrderItem, OrderMessage, ShippingAddress, StockReservation, StockReservationItem, VerificationCode, SavedPaymentMethod
|
||||
from .forms import ProductForm, SecondaryImageForm, UserLoginForm, UserRegisterForm, ProductEditForm, EditProfileForm, ChangePasswordForm, ShippingAddressForm, ResetPasswordForm, ResetPasswordPhase2Form
|
||||
from . import tasks
|
||||
|
||||
Reference in New Issue
Block a user