I apologize for anyone who looked at this. Apparently I had a bunch of
typos. Can't read my own code. Problem was solved by me re-typing the code.
frank-
On Sat, Feb 12, 2022 at 7:07 AM frank dilorenzo
wrote:
> This is the model:
> ===
>
> from django.db import models
>
> # Creat
This is the model:
===
from django.db import models
# Create your models here.
class Artist(models.Model):
name = models.CharField(max_length=100, unique=True)
slug = models.SlugField(max_length=100, unique=True,
help_text='Unique value for artist page URL, created from name')
birt_na
2 matches
Mail list logo