Search Results

4
votes
4answers
1k views

how to use a slug in django

I am trying to create a SlugField in Django. I created this simple model: from django.db import models class test(models.Model): q = models.CharField(max_length=30) …