More work, some progress made.

This commit is contained in:
Simon Brooke 2018-06-11 21:49:16 +01:00
parent bbf6daf6ca
commit 706e42f483
31 changed files with 789 additions and 763 deletions

View file

@ -0,0 +1,15 @@
-- enough data to get the system working and real logins
insert into addresses (id, address, postcode, latitude, longitude)
values (5, 'West Croft, Standingstone, Auchencairn', 'DG7 1RF', 54.822389, -3.920265);
insert into dwellings (id, address_id, sub_address)
values (5, 5, '');
insert into electors (id, name, dwelling_id, gender)
values (11, 'Simon Brooke', 5, 'Male');
insert into authorities (id) values ('GitHub');
insert into canvassers (username, fullname, elector_id, address_id, authority_id, authorised)
values ('simon_brooke', 'Simon Brooke', 11, 5, 'GitHub', true);

View file

@ -1,6 +1,6 @@
-- File queries.sql
-- autogenerated by adl.to-hugsql-queries at
-- 2018-06-11T15:50:04.238Z
-- 2018-06-11T20:39:10.396Z
-- See [Application Description Language](https://github.com/simon-brooke/adl).
@ -494,8 +494,8 @@ ORDER BY canvassers.username,
-- :name list-canvassers-by-role :? :*
-- :doc links all existing canvasser records related to a given role
SELECT *
FROM canvassers
WHERE canvassers.roles = link_canvassers_.canvasser_id
FROM canvassers, link_canvassers_
WHERE canvassers.id = link_canvassers_.canvasser_id
AND link_canvassers_.role_id = :id
ORDER BY canvassers.username,
canvassers.fullname,
@ -701,8 +701,8 @@ ORDER BY roles.name,
-- :name list-roles-by-canvasser :? :*
-- :doc links all existing role records related to a given canvasser
SELECT *
FROM roles
WHERE roles.members = link_roles_canvassers.role_id
FROM roles, link_roles_canvassers
WHERE roles.id = link_roles_canvassers.role_id
AND link_roles_canvassers.canvasser_id = :id
ORDER BY roles.name,
roles.id
@ -754,8 +754,8 @@ ORDER BY teams.name,
-- :name list-teams-by-canvasser :? :*
-- :doc links all existing team records related to a given canvasser
SELECT *
FROM teams
WHERE teams.members = link_teams_canvassers.team_id
FROM teams, link_teams_canvassers
WHERE teams.id = link_teams_canvassers.team_id
AND link_teams_canvassers.canvasser_id = :id
ORDER BY teams.name,
teams.id

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File application-index.html generated 2018-06-11T17:32:20.359Z by adl.to-selmer-templates.
<!-- File application-index.html generated 2018-06-11T18:42:42.835Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -220,49 +220,49 @@ Followupmethod
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File form-addresses-Address.html generated 2018-06-11T17:32:20.336Z by adl.to-selmer-templates.
<!-- File form-addresses-Address.html generated 2018-06-11T18:42:42.819Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -248,49 +248,49 @@ To delete this addresses record
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File form-canvassers-Canvasser.html generated 2018-06-11T17:32:20.372Z by adl.to-selmer-templates.
<!-- File form-canvassers-Canvasser.html generated 2018-06-11T18:42:42.844Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -343,49 +343,49 @@ To delete this canvassers record
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File form-districts-District.html generated 2018-06-11T17:32:20.331Z by adl.to-selmer-templates.
<!-- File form-districts-District.html generated 2018-06-11T18:42:42.814Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -98,49 +98,49 @@ To delete this districts record
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File form-dwellings-Dwelling.html generated 2018-06-11T17:32:20.380Z by adl.to-selmer-templates.
<!-- File form-dwellings-Dwelling.html generated 2018-06-11T18:42:42.852Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -136,49 +136,49 @@ To delete this dwellings record
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File form-electors-Elector.html generated 2018-06-11T17:32:20.365Z by adl.to-selmer-templates.
<!-- File form-electors-Elector.html generated 2018-06-11T18:42:42.839Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -228,49 +228,49 @@ To delete this electors record
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File form-followupactions-Followupaction.html generated 2018-06-11T17:32:20.382Z by adl.to-selmer-templates.
<!-- File form-followupactions-Followupaction.html generated 2018-06-11T18:42:42.854Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -230,49 +230,49 @@ To delete this followupactions record
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File form-issues-Issue.html generated 2018-06-11T17:32:20.348Z by adl.to-selmer-templates.
<!-- File form-issues-Issue.html generated 2018-06-11T18:42:42.827Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -139,49 +139,49 @@ To delete this issues record
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File form-roles-Role.html generated 2018-06-11T17:32:20.351Z by adl.to-selmer-templates.
<!-- File form-roles-Role.html generated 2018-06-11T18:42:42.829Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -117,49 +117,49 @@ To delete this roles record
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File form-teams-Team.html generated 2018-06-11T17:32:20.361Z by adl.to-selmer-templates.
<!-- File form-teams-Team.html generated 2018-06-11T18:42:42.836Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -211,49 +211,49 @@ To delete this teams record
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File form-visits-Visit.html generated 2018-06-11T17:32:20.356Z by adl.to-selmer-templates.
<!-- File form-visits-Visit.html generated 2018-06-11T18:42:42.832Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -174,49 +174,49 @@ To delete this visits record
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File list-addresses-Addresses.html generated 2018-06-11T17:32:20.370Z by adl.to-selmer-templates.
<!-- File list-addresses-Addresses.html generated 2018-06-11T18:42:42.843Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -124,49 +124,49 @@ View
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File list-canvassers-Canvassers.html generated 2018-06-11T17:32:20.379Z by adl.to-selmer-templates.
<!-- File list-canvassers-Canvassers.html generated 2018-06-11T18:42:42.851Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -142,49 +142,49 @@ View
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File list-districts-Districts.html generated 2018-06-11T17:32:20.376Z by adl.to-selmer-templates.
<!-- File list-districts-Districts.html generated 2018-06-11T18:42:42.848Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -79,49 +79,49 @@ View
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File list-dwellings-Dwellings.html generated 2018-06-11T17:32:20.369Z by adl.to-selmer-templates.
<!-- File list-dwellings-Dwellings.html generated 2018-06-11T18:42:42.842Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -88,49 +88,49 @@ View
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File list-electors-Electors.html generated 2018-06-11T17:32:20.346Z by adl.to-selmer-templates.
<!-- File list-electors-Electors.html generated 2018-06-11T18:42:42.825Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -115,49 +115,49 @@ View
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File list-followupactions-Followupactions.html generated 2018-06-11T17:32:20.378Z by adl.to-selmer-templates.
<!-- File list-followupactions-Followupactions.html generated 2018-06-11T18:42:42.850Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -115,49 +115,49 @@ View
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File list-issues-Issues.html generated 2018-06-11T17:32:20.377Z by adl.to-selmer-templates.
<!-- File list-issues-Issues.html generated 2018-06-11T18:42:42.849Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -88,49 +88,49 @@ View
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File list-roles-Roles.html generated 2018-06-11T17:32:20.354Z by adl.to-selmer-templates.
<!-- File list-roles-Roles.html generated 2018-06-11T18:42:42.831Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -79,49 +79,49 @@ View
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File list-teams-Teams.html generated 2018-06-11T17:32:20.328Z by adl.to-selmer-templates.
<!-- File list-teams-Teams.html generated 2018-06-11T18:42:42.812Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -106,49 +106,49 @@ View
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,22 +1,22 @@
{% extends "base.html" %}
<!-- File list-visits-Visits.html generated 2018-06-11T17:32:20.324Z by adl.to-selmer-templates.
<!-- File list-visits-Visits.html generated 2018-06-11T18:42:42.810Z by adl.to-selmer-templates.
See [Application Description Language](https://github.com/simon-brooke/adl).-->
{% block head %}
<html:meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<html:meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<html:link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-common.css' type='text/css' rel='stylesheet'/>
<html:link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<link href='css/yyy-site.css' type='text/css' rel='stylesheet'/>
<html:link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<link href='css/spinner.css' type='text/css' rel='stylesheet'/>
<html:link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow'/>
<html:title>
<title>
{{site-title}}: {{title}}
</html:title>
</title>
{% endblock %}
@ -97,49 +97,49 @@ View
{% endblock %}
{% block foot %}
<html:footer>
<html:div id='credits'>
<html:div>
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
<footer>
<div id='credits'>
<div>
<img height='24' width='24' src='img/credits/ric-logo.png'/>
A project of the
<html:a href='https://radical.scot/'>
<a href='https://radical.scot/'>
Radical Independence Campaign
</html:a>
</a>
||
Version {{version}}
</html:div>
<html:div>
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
</div>
<div>
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
Built with
<html:a href='http://www.luminusweb.net/'>
<a href='http://www.luminusweb.net/'>
LuminusWeb
</html:a>
</a>
||
<html:img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
<img src='img/credits/clojure-icon.gif' alt='Clojure' width='16' height='16'/>
Powered by
<html:a href='http://clojure.org'>
<a href='http://clojure.org'>
Clojure
</html:a>
</a>
||
<html:img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
<img src='img/credits/github-logo-transparent.png' alt='GitHub' width='16' height='16'/>
Find me/fork me on
<html:a href='https://github.com/simon-brooke/smeagol'>
<a href='https://github.com/simon-brooke/smeagol'>
Github
</html:a>
</a>
||
<html:img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
<img src='img/credits/gnu.small.png' alt='Free Software Foundation' width='16' height='16'/>
Licensed under the
<html:a href='http://www.gnu.org/licenses/gpl-2.0.html'>
<a href='http://www.gnu.org/licenses/gpl-2.0.html'>
GNU General Public License version 2.0
</html:a>
</html:div>
</html:div>
</html:footer>
</a>
</div>
</div>
</footer>
{% endblock %}

View file

@ -1,30 +1,22 @@
<!DOCTYPE html>
<html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:html="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/yyy-common.css" />
<link rel="stylesheet" type="text/css" href="css/yyy-site.css" />
<link rel="stylesheet" type="text/css" href="css/spinner.css" />
<link href="https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow" rel="stylesheet"/>
<title>{{title}}</title>
<title>{% block title %}{% endblock %}{{title}}</title>
</head>
<body>
{% block whole-page %}
{% block top %}
<header>
<div id="nav">
<img id="nav-icon" src="img/threelines.png" alt="Menu"/>
<menu id="nav-menu" class="nav">
<li class=""><a href="index.html">Home</a></li>
<li class=""><a href="library.html">Library</a></li>
<li class=""><a href="register.html">Register</a></li>
<li class="">{% if user %}<a href="logout.html">Logout</a>
{% else %}<a href="login.html">Login</a>{% endif %}</li>
<li class=""><a href="about.html">About</a></li>
{% if user %}
<li id="user"><a href="profile">Logged in as {{user.username}}</a></li>
{% endif %}
<li class=""><a href="home">Home</a></li>
<li class=""><a href="auth">Login</a></li>
<li class=""><a href="about">About</a></li>
</menu>
</div>
@ -32,21 +24,17 @@
{{title}}
</h1>
</header>
{% endblock %}
<div id="main-container" class="container">
<div id="big-links">
{% block big-links %}
{% endblock %}
</div>
</div>
<div if="#content">
{% block content %}
{% endblock %}
</div>
<div id="back-link-container">
<a href="javascript:history.back()" id="back-link">Back</a>
</div>
</div>
{% block foot %}
<footer>
<div id="credits">
<div>
@ -63,17 +51,9 @@
</div>
</div>
</footer>
{% endblock %}
{% endblock %}
<script type="text/javascript">
var context = "{{servlet-context}}";
var csrfToken = "{{csrf-token}}";
</script>
{% block extra-script %}
{% endblock %}
</body>
</html>

View file

@ -1,22 +1,30 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:html="http://www.w3.org/1999/xhtml">
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" type="text/css" href="css/yyy-common.css" />
<link rel="stylesheet" type="text/css" href="css/yyy-site.css" />
<link rel="stylesheet" type="text/css" href="css/spinner.css" />
<link href="https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow" rel="stylesheet"/>
<title>{% block title %}{% endblock %}{{title}}</title>
<title>{{title}}</title>
</head>
<body>
{% block whole-page %}
{% block top %}
<header>
<div id="nav">
<img id="nav-icon" src="img/threelines.png" alt="Menu"/>
<menu id="nav-menu" class="nav">
<li class=""><a href="home">Home</a></li>
<li class=""><a href="auth">Login</a></li>
<li class=""><a href="about">About</a></li>
<li class=""><a href="index.html">Home</a></li>
<li class=""><a href="library.html">Library</a></li>
<li class=""><a href="register.html">Register</a></li>
<li class="">{% if user %}<a href="logout.html">Logout</a>
{% else %}<a href="login.html">Login</a>{% endif %}</li>
<li class=""><a href="about.html">About</a></li>
{% if user %}
<li id="user"><a href="profile">Logged in as {{user.username}}</a></li>
{% endif %}
</menu>
</div>
@ -24,17 +32,22 @@
{{title}}
</h1>
</header>
{% endblock %}
<div id="main-container" class="container">
<div id="big-links">
{% block big-links %}
{% endblock %}
</div>
</div>
<div if="#content">
{% block content %}
{% endblock %}
</div>
<br clear="both"/>
<div id="back-link-container">
<a href="javascript:history.back()" id="back-link">Back</a>
</div>
</div>
{% block foot %}
<footer>
<div id="credits">
<div>
@ -51,9 +64,17 @@
</div>
</div>
</footer>
{% endblock %}
{% endblock %}
<script type="text/javascript">
var context = "{{servlet-context}}";
var csrfToken = "{{csrf-token}}";
{% block extra-script %}
{% endblock %}
</script>
</body>
</html>

View file

@ -1,7 +1,8 @@
{% extends "base-unauthenticated.html" %}
{% block content %}
<p>
We're not going to do login in the long term; we're going to use oauth.
We're not going to do login in the long term; we're going to use
<a href="https://oauth.net/2/">oauth</a>.
This is a temporary login form.
</p>
<form action="auth" method="post">

View file

@ -13,6 +13,7 @@
[mount.core :as mount]
[youyesyet.middleware :as middleware]
[clojure.tools.logging :as log]
[youyesyet.db.core :as db]
[youyesyet.config :refer [env]]))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@ -42,6 +43,8 @@
:start ((or (:init defaults) identity))
:stop ((or (:stop defaults) identity)))
;;(mount/start db/*db*)
(defn init
"init will be called once when
app is deployed as a servlet on

View file

@ -1,8 +1,10 @@
(ns ^{:doc "Routes/pages available to unauthenticated users."
:author "Simon Brooke"} youyesyet.routes.home
(:require [clojure.walk :refer [keywordize-keys]]
[clojure.java.io :refer [input-stream]]
[noir.response :as nresponse]
[noir.util.route :as route]
[ring.util.http-response :refer [content-type ok]]
[youyesyet.layout :as layout]
[youyesyet.db.core :as db-core]
[compojure.core :refer [defroutes GET POST]]
@ -95,6 +97,10 @@
(defroutes home-routes
(GET "/" [] (home-page))
(GET "/js/:file" [file]
(-> (input-stream (str "resources/public/js/" file))
ok
(content-type "text/javascript;charset=UTF-8")))
(GET "/home" [] (home-page))
(GET "/about" [] (about-page))
(GET "/roles" request (route/restricted (roles-page request)))
@ -104,6 +110,6 @@
(GET "/auth" request (login-page request))
(POST "/auth" request (login-page request))
(GET "/notyet" [] (layout/render "notyet.html"
{:title "Can we persuade you?"}))
{:title "Can we persuade you?"}))
(GET "/supporter" [] (layout/render "supporter.html"
{:title "Have you signed up as a canvasser yet?"})))

View file

@ -14,32 +14,32 @@
</documentation>
<content>
<head>
<html:meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<html:meta name="viewport" content="width=device-width, initial-scale=1"/>
<html:link rel="stylesheet" type="text/css" href="css/yyy-common.css" />
<html:link rel="stylesheet" type="text/css" href="css/yyy-site.css" />
<html:link rel="stylesheet" type="text/css" href="css/spinner.css" />
<html:link href="https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow" rel="stylesheet"/>
<html:title>{{site-title}}: {{title}}</html:title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" type="text/css" href="css/yyy-common.css" />
<link rel="stylesheet" type="text/css" href="css/yyy-site.css" />
<link rel="stylesheet" type="text/css" href="css/spinner.css" />
<link href="https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow" rel="stylesheet"/>
<title>{{site-title}}: {{title}}</title>
</head>
<top> </top>
<foot>
<html:footer>
<html:div id="credits">
<html:div>
<html:img src="img/credits/ric-logo.png" width="24" height="24"/>
<footer>
<div id="credits">
<div>
<img src="img/credits/ric-logo.png" width="24" height="24"/>
A project of the
<html:a href="https://radical.scot/">Radical Independence Campaign</html:a> ||
<a href="https://radical.scot/">Radical Independence Campaign</a> ||
Version {{version}}
</html:div>
<html:div>
<html:img height="16" width="16" alt="Clojure" src="img/credits/luminus-logo.png"/>Built with <html:a href="http://www.luminusweb.net/">LuminusWeb</html:a> ||
<html:img height="16" width="16" alt="Clojure" src="img/credits/clojure-icon.gif"/> Powered by <html:a href="http://clojure.org">Clojure</html:a> ||
<html:img height="16" width="16" alt="GitHub" src="img/credits/github-logo-transparent.png"/>Find me/fork me on <html:a href="https://github.com/simon-brooke/smeagol">Github</html:a> ||
<html:img height="16" width="16" alt="Free Software Foundation" src="img/credits/gnu.small.png"/>Licensed under the <html:a href="http://www.gnu.org/licenses/gpl-2.0.html">GNU General Public License version 2.0</html:a>
</html:div>
</html:div>
</html:footer>
</div>
<div>
<img height="16" width="16" alt="Clojure" src="img/credits/luminus-logo.png"/>Built with <a href="http://www.luminusweb.net/">LuminusWeb</a> ||
<img height="16" width="16" alt="Clojure" src="img/credits/clojure-icon.gif"/> Powered by <a href="http://clojure.org">Clojure</a> ||
<img height="16" width="16" alt="GitHub" src="img/credits/github-logo-transparent.png"/>Find me/fork me on <a href="https://github.com/simon-brooke/smeagol">Github</a> ||
<img height="16" width="16" alt="Free Software Foundation" src="img/credits/gnu.small.png"/>Licensed under the <a href="http://www.gnu.org/licenses/gpl-2.0.html">GNU General Public License version 2.0</a>
</div>
</div>
</footer>
</foot>
</content>
<typedef name="postcode" type="string"

View file

@ -23,32 +23,32 @@
</documentation>
<content>
<head>
<html:meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<html:meta name="viewport" content="width=device-width, initial-scale=1"/>
<html:link rel="stylesheet" type="text/css" href="css/yyy-common.css"/>
<html:link rel="stylesheet" type="text/css" href="css/yyy-site.css"/>
<html:link rel="stylesheet" type="text/css" href="css/spinner.css"/>
<html:link href="https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow" rel="stylesheet"/>
<html:title>{{site-title}}: {{title}}</html:title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" type="text/css" href="css/yyy-common.css"/>
<link rel="stylesheet" type="text/css" href="css/yyy-site.css"/>
<link rel="stylesheet" type="text/css" href="css/spinner.css"/>
<link href="https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow" rel="stylesheet"/>
<title>{{site-title}}: {{title}}</title>
</head>
<top> </top>
<foot>
<html:footer>
<html:div id="credits">
<html:div>
<html:img src="img/credits/ric-logo.png" width="24" height="24"/>
<footer>
<div id="credits">
<div>
<img src="img/credits/ric-logo.png" width="24" height="24"/>
A project of the
<html:a href="https://radical.scot/">Radical Independence Campaign</html:a> ||
<a href="https://radical.scot/">Radical Independence Campaign</a> ||
Version {{version}}
</html:div>
<html:div>
<html:img height="16" width="16" alt="Clojure" src="img/credits/luminus-logo.png"/>Built with <html:a href="http://www.luminusweb.net/">LuminusWeb</html:a> ||
<html:img height="16" width="16" alt="Clojure" src="img/credits/clojure-icon.gif"/> Powered by <html:a href="http://clojure.org">Clojure</html:a> ||
<html:img height="16" width="16" alt="GitHub" src="img/credits/github-logo-transparent.png"/>Find me/fork me on <html:a href="https://github.com/simon-brooke/smeagol">Github</html:a> ||
<html:img height="16" width="16" alt="Free Software Foundation" src="img/credits/gnu.small.png"/>Licensed under the <html:a href="http://www.gnu.org/licenses/gpl-2.0.html">GNU General Public License version 2.0</html:a>
</html:div>
</html:div>
</html:footer>
</div>
<div>
<img height="16" width="16" alt="Clojure" src="img/credits/luminus-logo.png"/>Built with <a href="http://www.luminusweb.net/">LuminusWeb</a> ||
<img height="16" width="16" alt="Clojure" src="img/credits/clojure-icon.gif"/> Powered by <a href="http://clojure.org">Clojure</a> ||
<img height="16" width="16" alt="GitHub" src="img/credits/github-logo-transparent.png"/>Find me/fork me on <a href="https://github.com/simon-brooke/smeagol">Github</a> ||
<img height="16" width="16" alt="Free Software Foundation" src="img/credits/gnu.small.png"/>Licensed under the <a href="http://www.gnu.org/licenses/gpl-2.0.html">GNU General Public License version 2.0</a>
</div>
</div>
</footer>
</foot>
</content>
<typedef name="postcode" type="string" pattern="^([Gg][Ii][Rr] 0[Aa]{2})|((([A-Za-z][0-9]{1,2})|(([A-Za-z][A-Ha-hJ-Yj-y][0-9]{1,2})|(([AZa-z][0-9][A-Za-z])|([A-Za-z][A-Ha-hJ-Yj-y][0-9]?[A-Za-z]))))[0-9][A-Za-z]{2})$" size="16">