-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
1,046 additions
and
376 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
tests/geopage/templates/geopage/classic_geo_page_with_leaflet.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{% extends "base.html" %} | ||
{% load wagtailcore_tags %} | ||
|
||
{% block content %} | ||
<h1>{{ page.title }}</h1> | ||
|
||
<ul> | ||
<li> | ||
Point: {{ page.point }} | ||
</li> | ||
<li> | ||
Lat: {{ page.lat }} | ||
</li> | ||
<li> | ||
Lng: {{ page.lng }} | ||
</li> | ||
</ul> | ||
{% endblock %} |
18 changes: 18 additions & 0 deletions
18
tests/geopage/templates/geopage/classic_geo_page_with_leaflet_and_zoom.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{% extends "base.html" %} | ||
{% load wagtailcore_tags %} | ||
|
||
{% block content %} | ||
<h1>{{ page.title }}</h1> | ||
|
||
<ul> | ||
<li> | ||
Point: {{ page.point }} | ||
</li> | ||
<li> | ||
Lat: {{ page.lat }} | ||
</li> | ||
<li> | ||
Lng: {{ page.lng }} | ||
</li> | ||
</ul> | ||
{% endblock %} |
18 changes: 18 additions & 0 deletions
18
tests/geopage/templates/geopage/classic_geo_page_with_zoom.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{% extends "base.html" %} | ||
{% load wagtailcore_tags %} | ||
|
||
{% block content %} | ||
<h1>{{ page.title }}</h1> | ||
|
||
<ul> | ||
<li> | ||
Point: {{ page.point }} | ||
</li> | ||
<li> | ||
Lat: {{ page.lat }} | ||
</li> | ||
<li> | ||
Lng: {{ page.lng }} | ||
</li> | ||
</ul> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{% extends "base.html" %} | ||
{% load wagtailcore_tags %} | ||
|
||
{% block content %} | ||
<h1>{{ page.title }}</h1> | ||
|
||
<ul> | ||
<li> | ||
Point: {{ page.location.tuple }} | ||
</li> | ||
<li> | ||
Lat: {{ page.location.y }} | ||
</li> | ||
<li> | ||
Lng: {{ page.location.x }} | ||
</li> | ||
</ul> | ||
{% endblock %} |
Oops, something went wrong.