On 6 sep, 09:07, Brendan <[EMAIL PROTECTED]> wrote:
> Hi, I'm looking at various python web frameworks, primarily looking
> for something to handle the presentation layer right now, and I heard
> some things about django.

If it's only for presentation, Django, being a full-stack framework,
might be a bit overkill. But YMMV...

> I looked at django's templating langauge and some other python
> templating languages. I'm most familiar with XML based templating
> languages like jsp and asp .net use. In those languages I can come up
> with a custom tag, say <my_widgets:calendar/>, put it in a tag
> library, and then reuse that widget anywhere.
>
> How would a similar thing be accomplished with django's templating
> language? Is there some mechanism for creating reusable gui
> components?

http://www.djangoproject.com/documentation/templates_python/#writing-custom-template-tags

> What about other python web framework templating
> languages?

<ot>
Most Python frameworks use existing, independant templating systems.
You'll find more informations here:
http://wiki.python.org/moin/Templating
</ot>

> Also, is the django templating library purely declarative, or are
> there imperative elements?

Did you bother to read the doc ? Django's template system has looping,
branching,  and state-modification features, so I don't see how it
could qualify as "purely declarative".


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to