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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T08:36:25+00:00 2026-05-20T08:36:25+00:00

I have an integer value being passed to my template, and I want to

  • 0

I have an integer value being passed to my template, and I want to create a number of html elements equal to that integer.

game.players is a number 0-10.

I want to create a number of input elements equal to the count of game.players.

  • 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-20T08:36:25+00:00Added an answer on May 20, 2026 at 8:36 am

    Either populate the context with an iterable or define a template filter that handles a number input and outputs an iterable.

    Note: it’s recommended to define the iterable in your view as that’s the django philosophy and why there’s no built in range filter.

    Here’s what a core dev thinks:

    My impression of this idea is that it
    is trying to lead to programming in
    the template. If you have a list of
    options that need to be rendered, they
    should be computed in the view, not in
    the template. If that’s as simple as a
    range of values, then so be it.

    # view
    for game in games:
        game.players_range = range(game.players)
    
    return render_to_response("foo.html", {'games': games})
    
    
    # template
    {% for game in games %}
        {% for i in game.players_range %}
          Element {{ i }}
        {% endfor %}
    {% endfor %}
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a multidimentional array of pointers to integer (of unknown rank) being passed
I have a variable of type Hashmap <String,Integer >. In this, the Integer value
Let's say I have an integer that I need to convert to a string
I have a table similar to this: CREATE TABLE example ( id integer primary
Say I have the classic 4-byte signed integer, and I want something like print
We have a file that has a 64 bit integer as a string in
I have to sort a number of integers, which can have values between 30.000.000
We have some integer arithmetic which for historical reasons has to work the same
I have an integer field in a ClientDataSet and I need to compare to
I have an NSAttributedString s and an integer i and I'd like a function

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.