view globalneighbors/templates/city.html @ 14:27925261c137

fix broken tests including an aggregious case where we add ourselves as a neighbor to ourself
author Jeff Hammel <k0scist@gmail.com>
date Sun, 25 Jun 2017 14:29:18 -0700
parents 6d89ea94930b
children 21095c9006e5
line wrap: on
line source

<!DOCTYPE html>
<html>
  <head>
    <title>{{ name }}</title>
  </head>
  <body>
    <a href="/"
       title="back to Global Niehgbors">Home</a>

    <h1>{{ name }}</h1>

    <h2 title="location">{{latitude}},{{longitude}}</h2>

    <dl>
      <dt>Population:</dt>
      <dd>{{ population }}</dd>
    </dl>
  </body>
</html>