{% load i18n %}

{% trans "Review Board version mismatch" %}

{% blocktrans %} The version of Review Board running does not match the version the site was last upgraded to. You are running {{current_version}} and the site was last upgraded to {{stored_version}}. {% endblocktrans %}

{% blocktrans %} Please upgrade your site to fix this by running: {% endblocktrans %}

{% if devel_install %}
   $ ./reviewboard/manage.py syncdb
   $ ./reviewboard/manage.py evolve --execute
{% else %}
    $ rb-site upgrade {{site_dir}}
{% endif %}