I might not understand fully what you want to do, but yes, it can.
While I have not used it with Django, I have used JSP templating in
the GWT application HTML file.  For instance, in one application, I
have a different GWT module loaded depending on the type of user
(admin, client, etc).  Here is what the header of my JSP file looks
like:

  <head>
    <meta http-equiv="content-type" content="text/html;
charset=UTF-8">
    <!--                                           -->
    <!-- Any title is fine                         -->
    <!--                                           -->
    <title>Share and Enjoy!</title>

    <!--                                           -->
    <!-- This script loads your compiled module.   -->
    <!-- If you add any GWT meta tags, they must   -->
    <!-- be added before this line.                -->
    <!--                                           -->
    <script type="text/javascript" language="javascript" src="<c:out
value="${applicationClass}"/>/<c:out value="${applicationClass}"/
>.nocache.js"></script>
  </head>

The particular GWT javascript file loaded depends on the value of
applicationClass, which is substituted by the server.

In general, GWT is an entirely client-side technology and thus can be
used with whatever server-side technology you desire.  The one
exception to this is the GWT RPC mechanism, which requires a Java
servlet on the server (there is, however, a 3rd party library that
provides a GWT RPC backend in python: http://code.google.com/p/python-gwt-rpc/).

Tony
--
Tony Strauss
Designing Patterns, LLC
http://www.designingpatterns.com
http://blogs.designingpatterns.com

On Mar 19, 3:42 am, Coonay <[email protected]> wrote:
> can gwt be used with a templete languge sush as Django
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to