view templates/404.html @ 207:d534881629ff

Updated snippet's template and views files to fix rating code collision which prevented posting new snippets. Updated snippet's models file so that now secret id of each snippet will be unique. It also means that the no two or more than two snippets will have same secret id.
author Ahsan Ali Shahid <ahsan.ali.shahid@gmail.com>
date Mon, 19 Aug 2013 20:30:19 +0500
parents e40d79359d07
children
line wrap: on
line source

{% extends "base.djhtml" %}

{% block title %}
Page not found
{% endblock %}

{% block content %}
<h1>Page not found</h1>
<p>
  The page you were looking for is unavailable. If you think this
  is our fault, please let us know.
</p>
{% endblock %}