Reputation: 68
I am using Django 1.2 template tags over webapp framework in Google App engine. I intend to migrate over to Webapp2. I was looking for a way to this in webapp2, but did not find a template engine for webapp2. So, should I continue with webapp's template engine or use pure Django template engine.
Upvotes: 0
Views: 122
Reputation: 16563
Many people use Jinja templates with webapp2 in GAE, but you can also use Django templates. The two template systems are very similar so it is fairly easy to switch between the two.
The template system that you use is quite independent of webapp2. It works like this:
Feel free to use Jinja, Django, or any other templating system. Webapp2 doesn't provide templates because it is not part of its job.
Upvotes: 2