Форум сайта python.su
Взял пример для работы со статическими файлами https://developers.google.com/appengine/docs/python/gettingstarted/staticfiles?hl=ru
Всё работает. Решил вывести картину, поместил в папку stylesheets файл error.jpg
cделал такой шаблон
<html> <head> <link type="text/css" rel="stylesheet" href="/stylesheets/main.css" /> </head> <body> {% for greeting in greetings %} {% if greeting.author %} <b>{{ greeting.author.nickname }}</b> wrote: {% else %} An anonymous person wrote: {% endif %} <blockquote>{{ greeting.content|escape }}</blockquote> {% endfor %} <form action="/sign" method="post"> <div><textarea name="content" rows="3" cols="60"></textarea></div> <div><input type="submit" value="Sign Guestbook"></div> </form> <a href="{{ url }}">{{ url_linktext }}</a> <br> <img src="/stylesheets/error.jpg"> </body> </html>
application: helloworld
version: 1
runtime: python
api_version: 1
handlers:
- url: /stylesheets
static_dir: stylesheets
- url: /.*
script: main.py
Офлайн