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 8324095
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T23:56:02+00:00 2026-06-08T23:56:02+00:00

I have a model, News, that has a ForeignKey to another model, Category. The

  • 0

I have a model, News, that has a ForeignKey to another model, Category.
The categories are defined with id, name, slug and a few more parameters.
My categories will never change in the future, so I am wondering why have I to store them in the database.
Is there any way to hardcode them inside the code, like using the choices or any other technique?

  • 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-06-08T23:56:04+00:00Added an answer on June 8, 2026 at 11:56 pm

    yes, choices: store pairs of ID+name as a tuple of tuples and in another structure any other parameters.

    CATEGORIES = (
        (1, "Some category"),
        (2, "Another category"),
    )
    
    CATEGORIES_PARAMS = {
        1: {'slug': 'param_value'},
        2: {'slug': 'another_value'},
    }
    
    
    class News(models.Model):
        category = models.IntegerField("category", choices=CATEGORIES)
        ...
    

    then you can use other params following way:

    CATEGORIES_PARAMS[news_instance.category]['slug']
    

    or create simple wrapper class:

    class Category(object):
        def __init__(self, id):
            self.id = id
    
        def __getattr__(self, attr):
            return CATEGORIES_PARAMS[self.id][attr]
    
    
    cat = Category(news_instance.category)
    print(cat.slug)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have these models: class Gallery(models.Model): HeadImage = models.ImageField(upload_to=gallery,blank=True,null=True) class News(Gallery): Name=models.CharField(max_length=100) #some other
I have model Article it has field title with some text that may contain
I have a website that has PageContent, News, Events etc and I have a
I have two model News and Category. And they have habtm relation. I want
I'm trying to build a database of urls(links). I have a Category model that
I m creating a news page. I have News Model and News have a
So for example ... Lets say I have a Posts model and a News
I have a few models: 'Article, Video, BlogPost, News, Commodity'. Each are in their
I have model with a location, which itself has a latitude and longitude. What
I have model Foo which has field bar. The bar field should be unique,

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.