Updatestate
{% extends "basestyle.html" %}
{% block htmltitle %} <title>版本更新</title> {% endblock %}
{%block style%}
<link href="stylesheets/fiftyarticle.css" rel="stylesheet" type="text/css" />
{%endblock%}
{% block maincontent %}
{%for state in states %}
        <hr>
        <p>
        {{ state.versioninformation.ver }}:<br>
        <ul>
        {% for content in state.content.itervalues %}
        <li>{{content}}</li>
        {% endfor %}
        </ul>
        </p>
{% endfor %}{% endblock%}
 
{% block maincontent_title%}
目前最新版本:{{ nowver }}
{%endblock%}