Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3226428
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T16:27:20+00:00 2026-05-17T16:27:20+00:00

I am trying to create a unique slug in Django so that I can

  • 0

I am trying to create a unique slug in Django so that I can access a post via a url like this:
http://www.example.com/buy-a-new-bike_Boston-MA-02111_2

The relevant models:

class ZipCode(models.Model):
    zipcode = models.CharField(max_length=5)
    city = models.CharField(max_length=64)
    statecode = models.CharField(max_length=32)

class Need(models.Model):
    title = models.CharField(max_length=50)
    us_zip = models.CharField(max_length=5)
    slug = ?????

    def get_city():
        zip = ZipCode.objects.get(zipcode=self.us_zip)
        city = "%s, %s %s" % (zip.city, zip.statecode, zip.zipcode)
        return city

A sample ZipCode record:

  • zipcode = “02111”
  • city = “Boston”
  • statecode = “MA”

A sample Need record:

  • title = “buy a new bike”
  • us_zip = “02111”
  • slug = “buy-a-new-bike_Boston-MA-02111_2” (desired)

Any tips as to how to create this unique slug? Its composition is:

  • Need.title + “_” + Need.get_city() + “_” + an optional incrementing integer to make it unique. All spaces should be replaced with “-“.

NOTE: My desired slug above assumes that the slug “buy-a-new-bike_Boston-MA-02111” already exists, which is what it has the “_2” appended to it to make it unique.

I’ve tried django-extensions, but it seems that it can only take a field or tuple of fields to construct the unique slug. I need to pass in the get_city() function as well as the “_” connector between the title and city. Anyone solved this and willing to share?

Thank you!

UPDATE

I’m already using django-extensions for its UUIDField, so it would be nice if it could also be usable for its AutoSlugField!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T16:27:20+00:00Added an answer on May 17, 2026 at 4:27 pm

    I use this snippet for generating unique slug and my typical save method look like below

    slug will be Django SlugField with blank=True but enforce slug in save method.

    typical save method for Need model might look below

    def save(self, **kwargs):
        slug_str = "%s %s" % (self.title, self.us_zip) 
        unique_slugify(self, slug_str) 
        super(Need, self).save(**kwargs)
    

    and this will generate slug like buy-a-new-bike_Boston-MA-02111 , buy-a-new-bike_Boston-MA-02111-1 and so on. Output might be little different but you can always go through snippet and customize to your needs.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create a Users table that only has OpenId registrations, exactly like
Basically, I'm trying to create an object of unique objects, a set. I had
I am trying create a WCF service that leverages the WPF MediaPlayer on the
Trying to create my first iPhone app that would play back audio. When I
Trying to create a small monitor application that displays current internet usage as percentage
I'm trying to create unique anchors for every comment on my blog so a
I am trying to create a unique constraint on two fields in a table.
I am trying to create a unique CD-KEY to put in our product's box,
I am trying to create a unique taskID list based on the selections. Each
I have this string here: CREATE UNIQUE INDEX index555 ON SOME_TABLE ( SOME_PK ASC

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.