In web.py template: index.html I wrote:

$def with(s)
<img src="$s.filename.png" />

s.filename's value is "picuture" so I want to print

<img src="picture.png" />

but how can I tell web.py templating system do not to use $s.filename.png just use $s.filename and add ".png" to it?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 3 down vote accepted

See the Templetor docs:

Expression can be enclosed in () or {} for explicit grouping.

So, in your case,

<img src="${s.filename}.png" />
link|improve this answer
Thank you @agf ^_^ – netroyal Oct 2 '11 at 13:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.