Does Django have HTML helpers? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T02:49:08Zhttp://stackoverflow.com/feeds/question/61451http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/61451/does-django-have-html-helpers11Does Django have HTML helpers?ejunker2008-09-14T16:37:32Z2009-09-19T17:24:21Z
<p>Does Django have any template tags to generate common HTML markup? For example, I know that I can get a url using</p>
<pre><code>{% url mapper.views.foo %}
</code></pre>
<p>But that only gives me the URL and not the HTML code to create the link. Does Django have anything similar to Rails' link_to helper? I found <a href="http://code.google.com/p/django-helpers/" rel="nofollow">django-helpers</a> but since this is a common thing I thought Django would have something built-in.</p>
http://stackoverflow.com/questions/61451/does-django-have-html-helpers/61457#614572Answer by John Boker for Does Django have HTML helpers?John Boker2008-09-14T16:48:38Z2008-09-14T16:48:38Z<p>it doesnt look like they're built in but here's a couple snippets. it looks like it'd be pretty easy to create these helpers:</p>
<p><a href="http://www.djangosnippets.org/snippets/441/" rel="nofollow">http://www.djangosnippets.org/snippets/441/</a></p>
http://stackoverflow.com/questions/61451/does-django-have-html-helpers/67590#675909Answer by saturdayplace for Does Django have HTML helpers?saturdayplace2008-09-15T22:22:19Z2008-09-25T03:28:08Z<p>No it doesn't.</p>
<p><a href="http://www.b-list.org/" rel="nofollow">James Bennett</a> answered a <a href="http://www.b-list.org/weblog/2006/jul/02/django-and-ajax/" rel="nofollow">similar question</a> a while back, regarding Rails' built-in JavaScript helpers.</p>
<p>It's <em>really</em> unlikely that Django will ever have 'helper' functionality built-in. The reason, if I understand correctly, has to do with Django's core philosophy of keeping things <a href="http://docs.djangoproject.com/en/dev/misc/design-philosophies/#id1" rel="nofollow">loosely coupled</a>. Having that kind of helper functionality built-in leads to coupling Django with a specific JavaScript library or (in your case) html document type. </p>
<p>EG. What happens if/when HTML 5 is finally implemented and Django is generating HTML 4 or XHTML markup?</p>
<p>Having said that, Django's template framework is really flexible, and it wouldn't be terribly difficult to <a href="http://docs.djangoproject.com/en/dev/howto/custom-template-tags/" rel="nofollow">write your own tags/filters</a> that did what you wanted. I'm mostly a designer myself, and I've been able to put together a couple custom tags that worked like a charm.</p>
http://stackoverflow.com/questions/61451/does-django-have-html-helpers/67808#678080Answer by zuber for Does Django have HTML helpers?zuber2008-09-15T23:05:10Z2008-09-15T23:05:10Z<p>Here is a <a href="http://docs.djangoproject.com/en/dev/ref/templates/builtins/" rel="nofollow">list of all template tags and filters built into Django</a>. Django core doesn't have as much HTML helpers as Rails, because Django contributors assumed that web developer knows HTML very well. As stated by saturdaypalace, it's very unlikely for AJAX helpers to be added to Django, because it would lead to coupling Django with a specific JavaScript library.</p>
<p>It's very easy to <a href="http://docs.djangoproject.com/en/dev/howto/custom-template-tags/#howto-custom-template-tags" rel="nofollow">write your own template tags</a> in Django (often you need just to define one function, similiar to Rails). You could reimplement most of Rails helpers in Django during a day or two.</p>
http://stackoverflow.com/questions/61451/does-django-have-html-helpers/71598#715980Answer by exalted for Does Django have HTML helpers?exalted2008-09-16T12:10:40Z2008-09-16T12:10:40Z<p>This won't answer directly to the question, but why not using <code><a href="{% url mapper.views.foo %}">foo</a></code> in template then?</p>
http://stackoverflow.com/questions/61451/does-django-have-html-helpers/82175#821751Answer by zgoda for Does Django have HTML helpers?zgoda2008-09-17T11:27:31Z2008-09-17T11:27:31Z<p>I bet if there would be any consent of what is <em>common html</em>, there would be helpers module too, just for completeness (or because others have it). ;)</p>
<p>Other than that, Django template system is made mostly for HTML people, who already know how to write <code>p</code>, <code>img</code> and <code>a</code> tags and do not need any <em>helpers</em> for that. On the other side there are Python developers, who write code and do not care if the variable they put in context is enclosed by <code>div</code> or by <code>span</code> (perfect example of <em>separation of concerns</em> paradigm). If you need to have these two worlds to be joined, you have do to it by yourself (or look for other's code).</p>
http://stackoverflow.com/questions/61451/does-django-have-html-helpers/1449028#14490280Answer by whatcould.com for Does Django have HTML helpers?whatcould.com2009-09-19T17:24:21Z2009-09-19T17:24:21Z<p>The purpose of helpers is not, as others here imply, to help developers who don't know how to write HTML. The purpose is to encapsulate common functionality -- so you don't need to write the same thing a thousand times -- and to provide a single place to edit common HTML used throughout your app.</p>
<p>It's the same reason templates and SSI are useful -- not because people don't know how to write the HTML in their headers and footers, but sometimes you want to write it just once.</p>
<blockquote>
<p>EG. What happens if/when HTML 5 is
finally implemented and Django is
generating HTML 4 or XHTML markup?</p>
</blockquote>
<p>Same thing that happens when HTML 5 is implemented and all your templates are written in repetitive HTML, except a lot easier.</p>
<p>The other posts have already answered the question, linking to the docs on <a href="http://docs.djangoproject.com/en/dev/howto/custom-template-tags/" rel="nofollow">custom template tags</a>; you can use tags and filters to build your own, but no, there aren't any built in.</p>