Can your Python template do this?
I like to imagine components of a Python web framework as personalities. Here's how I would imagine a conversation between a typical view and template would go down:
View Here's that data I just looked up.
Template Don't like it.
View What's wrong with it?
Template Format's wrong.
View You can change the format if you like.
Template Don't wanna. You change it.
View OK. Fine. I'll change it for you.
Which is why I wanted Moya templates to be very capable in processing data, but still keep them designer friendly. If the template data is sane then the template should be able to deal with it, without going back to the back-end developer.
I've got to a position where I love working with Moya templates. I honestly think you can do more with Moya templates than any other Python template language (without writing an extension).
So I've come up with a few (admittedly far fetched) examples of Moya templates, and I'd like to ask; can your python template do this?
Render a mandelbrot set?
<style>
table {border-spacing:0px;}
td {width:8px; height:8px;}
</style>
<table>
{% let xsize=80, ysize=60, max_iteration=50, color=color:'red' %}
{% for pixy in 1..ysize %}
{%- let y0 = (pixy / ysize) * 2 - 1 %}
<tr>
{%- for pixx in 1..xsize %}
{%- let x0 = (pixx / xsize) * 3 - 2, x=0, y=0, iteration=0 %}
{%- while x * x + y * y < 4 and iteration < max_iteration %}
{%- let x = x * x - y * y + x0, y = 2 * x * y + y0 %}
{%- let iteration = iteration + 1 %}
{%- end-while %}
<td style="background-color:${color * (iteration / max_iteration)}"></td>
{%- end-for %}
</tr>
{% end-for %}
</table>
Render all the dates in the current month?
<ul>
{% for date in .now.month_start.date ... .now.next_month.date %}
<li>
${localize:date}
</li>
{% endfor %}
</ul>
Tell you how many days until XMas?
{%- with time_till_xmas = datetime:'2016-12-25' - .now.utc.day_start %}
<h1>
${int:time_till_xmas.days} days to XMas
</h1>
{%- end-with %}
Render Markdown?
{% markup-block as 'markdown' %}
# Markdown is awesome
You *should* be able to use it **everywhere**.
{% end %}
Inline styles for Emails?
{% premailer %}
<style>
.highlight
{
padding:16px;
background-color:red;
color:white;
font-size:32px;
}
</style>
<div class="highlight">
Buy my product!
</div>
{% end-premailer %}
Work with colors?
{% let start = color:'lime' %}
{% let end = color:'#0000ff' %}
{% for i in 1..100 %}
{% let color = start + (end - start) * (i / 100) %}
<div style="background-color:${color};font-size:12px;">
${color.rgb}
</div>
{% end-for %}
Inspect template data?
{% inspect dict:.now %}
Get the current price of Bitcoin
{% cache for 10m %}
<ul>
{% for k, v in sorted:items:parsejson:get:"https://www.bitstamp.net/api/ticker/" %}
<li><b>${k}</b> ${v}
{% endfor %}
</ul>
{% end-cache %}
The get:
modifier does a HTTP GET to a URL. In practice it's not something I would recommend, as it's a blocking operation, and connectivity issues could cause it to fail. That one might be best left to the view.
Tell you exactly where the error is?
A cryptic error message can cost you minutes fixing a bug. If you are iterating quickly, it could add up to an hour or more in a day. Which is why Moya templates are fanatical about error reporting.
You can check out Moya on Github.
I could write a Django filter to do that.
That’s simply abuse of templates.
That’s supposed to be done in CSS, not HTML.
That’s a violation of MVC.
Of course you could! But the same argument can be said of any feature that Django doesn't have builtin.
I'm not suggesting it is a good idea. But the templates can take the abuse.
You can do stuff with the color object you can not do without some kind of pre-processor.
In what way? And do you mean MVT? If you we're talking about Django here.
Mmmmm. Very php.
Only superficially.
No, my template system can't and it should stay that way. Isn't the whole point of templates to be presentation without logic? The model or view handle the logic and templates only render the data to present it in a particular way. This seems really backwards to bring the logic back to the templates.
I'm not suggesting putting the logic in the templates. Business logic belongs in the view. But if the data is in the template context, I would prefer to have powerful enough templates that I can present the information in any way I wish.
This sucks! No, really, it looks very nice, I like the error report thing very much. I'll give it a try. Thanks, and great job!
Thanks, Agustin. Let me know how you get on!