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

  • SEARCH
  • Home
  • 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 7598999
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T22:33:02+00:00 2026-05-30T22:33:02+00:00

I have a model with SlugField . Value of that field is created when

  • 0

I have a model with SlugField. Value of that field is created when the model instance is saved for the first time:

from django.db import models
from django.template.defaultfilters import slugify as default_slugify

class SlugModel(models.Model):
    name = models.CharField(max_length=100)
    slug = models.SlugField(max_length=100)

    def save(self, *args, **kwargs):
        if not self.pk:
            self.slug = self.slugify(self.name)
        return super(SlugModel, self).save(*args, **kwargs)

    def slugify(self, tag):
        slug = default_slugify(tag)
        return slug

If i use that model in ModelForm the slug field is by default displayed.

from django.forms import ModelForm

class SlugModelForm(ModelForm):
    class Meta:
        model = SlugModel

How to automatically prevent all ModelForms from displaying of all of it’s SlugFields without manually specifying ModelForm.exclude or SlugField(editable=False) on each form/field?.

  • 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-30T22:33:04+00:00Added an answer on May 30, 2026 at 10:33 pm

    I think you could also extend Lychas response, create a base class and inherit from that one:

    class MyModelForm(ModelForm):
        class Meta:
        exclude = ('slug',)
        abstract = True
    
    class AnyForm(MyModelForm):
    #more here
    

    This is untested though.

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

Sidebar

Related Questions

I have this simple model: class Tag(models.Model): title = models.SlugField() created = models.datetime def
I have a model using Django-MPTT that also has a field for using a
I have a simple model that is defined as: class Article(models.Model): slug = models.SlugField(max_length=50,
i have the following models setup class Player(models.Model): #slug = models.slugField(max_length=200) Player_Name = models.CharField(max_length=100)
Lets say we have the following models: (simplified) class Collection(models.Model): slug = models.SlugField() class
I have model Article it has field title with some text that may contain
say I have these models: class Parent(models.Model): slug = models.SlugField() class Child(models.Model): slug =
NEWBIE ALERT! background: For the first time, I am writing a model that needs
I have two models: class Video(models.Model): slug = models.SlugField(blank=True, default='', db_index=True, unique=True) class VideoTranslation(models.Model):
I have a model like the following: class Page(ContentBase): url_slug = models.SlugField() Per the

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.