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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T08:47:01+00:00 2026-05-18T08:47:01+00:00

I’ve done a few small-ish Django projects, and each time I’ve been struck by

  • 0

I’ve done a few small-ish Django projects, and each time I’ve been struck by the apparent limitations of Django’s templating language. Just as a random example, I was shocked to learn that if, in the context of a template, I had a variable bar and a dict foo, I couldn’t access foo[bar] unless I wrote my own filter to do it.

I’ve read that the reason for this is because Django was created for environments where the people designing the pages were not programmers. I understand that.

But let’s say that’s not a problem for me. Is there a reason why I should stick with Django’s templating language, rather than switching over to something with a lot more power, like Mako (where you can even execute arbitrary Python expressions)?

I had the opportunity to use Mako for a school project a while back, and I really loved the power of it. For example, as part of the project, we had to make a big table, where building each row and cell was fairly complex. Yet, I could make my template look something like:

<table>
    % for foo in foos:
        ${makerow(row)}
    % endfor
</table>

<%def name="makerow(row)">
    <tr>
        # Blah blah blah (possibly a call to makecell somewhere)
    </tr>
</%def>

Maybe this is a violation of separation of presentation and logic, but boy is it nice and clean. Subroutines! Abstraction! Good stuff.

And a follow-up question: If using an alternative templating language isn’t frowned upon by the Django community, does anyone have any to suggest? Like I said, I really like Mako, but it’s literally the only one I’ve used other than Django’s.

  • 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-18T08:47:01+00:00Added an answer on May 18, 2026 at 8:47 am

    I’ll be honest, I didn’t thoroughly read the responses. But I’m guessing it’s a lot of “no python in your templates” and “your view shouldn’t have much logic” type stuff.

    If you put idealism aside and opt for pragmatism then I think Mako is a fine choice. I’m using it in a production capacity (mainly for speed, power and dynamic inheritance) for 3+ years now. It hasn’t failed or been otherwise annoying in any way.

    The idealists are correct, but sometimes you have to go for what’s doable vs what’s right. If you are not limited by the Django templating engine use it. If you need more power, Mako and Jinja are fine choices.

    Django makes it very easy to swap out templating engines and keep most things working as before:
    http://docs.djangoproject.com/en/dev/ref/templates/api/#using-an-alternative-template-language

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

Sidebar

Related Questions

No related questions found

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.