More work, some progress made.
This commit is contained in:
parent
bbf6daf6ca
commit
706e42f483
15
resources/migrations/20180611204244-bootstrap.up.sql
Normal file
15
resources/migrations/20180611204244-bootstrap.up.sql
Normal 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);
|
|
@ -1,6 +1,6 @@
|
||||||
-- File queries.sql
|
-- File queries.sql
|
||||||
-- autogenerated by adl.to-hugsql-queries at
|
-- 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).
|
-- See [Application Description Language](https://github.com/simon-brooke/adl).
|
||||||
|
|
||||||
|
|
||||||
|
@ -494,8 +494,8 @@ ORDER BY canvassers.username,
|
||||||
-- :name list-canvassers-by-role :? :*
|
-- :name list-canvassers-by-role :? :*
|
||||||
-- :doc links all existing canvasser records related to a given role
|
-- :doc links all existing canvasser records related to a given role
|
||||||
SELECT *
|
SELECT *
|
||||||
FROM canvassers
|
FROM canvassers, link_canvassers_
|
||||||
WHERE canvassers.roles = link_canvassers_.canvasser_id
|
WHERE canvassers.id = link_canvassers_.canvasser_id
|
||||||
AND link_canvassers_.role_id = :id
|
AND link_canvassers_.role_id = :id
|
||||||
ORDER BY canvassers.username,
|
ORDER BY canvassers.username,
|
||||||
canvassers.fullname,
|
canvassers.fullname,
|
||||||
|
@ -701,8 +701,8 @@ ORDER BY roles.name,
|
||||||
-- :name list-roles-by-canvasser :? :*
|
-- :name list-roles-by-canvasser :? :*
|
||||||
-- :doc links all existing role records related to a given canvasser
|
-- :doc links all existing role records related to a given canvasser
|
||||||
SELECT *
|
SELECT *
|
||||||
FROM roles
|
FROM roles, link_roles_canvassers
|
||||||
WHERE roles.members = link_roles_canvassers.role_id
|
WHERE roles.id = link_roles_canvassers.role_id
|
||||||
AND link_roles_canvassers.canvasser_id = :id
|
AND link_roles_canvassers.canvasser_id = :id
|
||||||
ORDER BY roles.name,
|
ORDER BY roles.name,
|
||||||
roles.id
|
roles.id
|
||||||
|
@ -754,8 +754,8 @@ ORDER BY teams.name,
|
||||||
-- :name list-teams-by-canvasser :? :*
|
-- :name list-teams-by-canvasser :? :*
|
||||||
-- :doc links all existing team records related to a given canvasser
|
-- :doc links all existing team records related to a given canvasser
|
||||||
SELECT *
|
SELECT *
|
||||||
FROM teams
|
FROM teams, link_teams_canvassers
|
||||||
WHERE teams.members = link_teams_canvassers.team_id
|
WHERE teams.id = link_teams_canvassers.team_id
|
||||||
AND link_teams_canvassers.canvasser_id = :id
|
AND link_teams_canvassers.canvasser_id = :id
|
||||||
ORDER BY teams.name,
|
ORDER BY teams.name,
|
||||||
teams.id
|
teams.id
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -220,49 +220,49 @@ Followupmethod
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -248,49 +248,49 @@ To delete this addresses record
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -343,49 +343,49 @@ To delete this canvassers record
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -98,49 +98,49 @@ To delete this districts record
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -136,49 +136,49 @@ To delete this dwellings record
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -228,49 +228,49 @@ To delete this electors record
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -230,49 +230,49 @@ To delete this followupactions record
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -139,49 +139,49 @@ To delete this issues record
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -117,49 +117,49 @@ To delete this roles record
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -211,49 +211,49 @@ To delete this teams record
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -174,49 +174,49 @@ To delete this visits record
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -124,49 +124,49 @@ View
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -142,49 +142,49 @@ View
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -79,49 +79,49 @@ View
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -88,49 +88,49 @@ View
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -115,49 +115,49 @@ View
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -115,49 +115,49 @@ View
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -88,49 +88,49 @@ View
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -79,49 +79,49 @@ View
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -106,49 +106,49 @@ View
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,22 +1,22 @@
|
||||||
{% extends "base.html" %}
|
{% 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).-->
|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
{% block head %}
|
{% 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}}
|
{{site-title}}: {{title}}
|
||||||
</html:title>
|
</title>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -97,49 +97,49 @@ View
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block foot %}
|
{% block foot %}
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id='credits'>
|
<div id='credits'>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img height='24' width='24' src='img/credits/ric-logo.png'/>
|
<img height='24' width='24' src='img/credits/ric-logo.png'/>
|
||||||
|
|
||||||
A project of the
|
A project of the
|
||||||
|
|
||||||
<html:a href='https://radical.scot/'>
|
<a href='https://radical.scot/'>
|
||||||
Radical Independence Campaign
|
Radical Independence Campaign
|
||||||
</html:a>
|
</a>
|
||||||
||
|
||
|
||||||
Version {{version}}
|
Version {{version}}
|
||||||
|
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
<img src='img/credits/luminus-logo.png' alt='Clojure' width='16' height='16'/>
|
||||||
Built with
|
Built with
|
||||||
<html:a href='http://www.luminusweb.net/'>
|
<a href='http://www.luminusweb.net/'>
|
||||||
LuminusWeb
|
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
|
Powered by
|
||||||
<html:a href='http://clojure.org'>
|
<a href='http://clojure.org'>
|
||||||
Clojure
|
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
|
Find me/fork me on
|
||||||
<html:a href='https://github.com/simon-brooke/smeagol'>
|
<a href='https://github.com/simon-brooke/smeagol'>
|
||||||
Github
|
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
|
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
|
GNU General Public License version 2.0
|
||||||
</html:a>
|
</a>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,30 +1,22 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
||||||
|
xmlns:html="http://www.w3.org/1999/xhtml">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
<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-common.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="css/yyy-site.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"/>
|
<link href="https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow" rel="stylesheet"/>
|
||||||
<title>{{title}}</title>
|
<title>{% block title %}{% endblock %}{{title}}</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{% block whole-page %}
|
|
||||||
{% block top %}
|
|
||||||
<header>
|
<header>
|
||||||
<div id="nav">
|
<div id="nav">
|
||||||
<img id="nav-icon" src="img/threelines.png" alt="Menu"/>
|
<img id="nav-icon" src="img/threelines.png" alt="Menu"/>
|
||||||
<menu id="nav-menu" class="nav">
|
<menu id="nav-menu" class="nav">
|
||||||
<li class=""><a href="index.html">Home</a></li>
|
<li class=""><a href="home">Home</a></li>
|
||||||
<li class=""><a href="library.html">Library</a></li>
|
<li class=""><a href="auth">Login</a></li>
|
||||||
<li class=""><a href="register.html">Register</a></li>
|
<li class=""><a href="about">About</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>
|
</menu>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -32,7 +24,7 @@
|
||||||
{{title}}
|
{{title}}
|
||||||
</h1>
|
</h1>
|
||||||
</header>
|
</header>
|
||||||
{% endblock %}
|
|
||||||
<div id="main-container" class="container">
|
<div id="main-container" class="container">
|
||||||
<div id="big-links">
|
<div id="big-links">
|
||||||
{% block big-links %}
|
{% block big-links %}
|
||||||
|
@ -42,11 +34,7 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
<div id="back-link-container">
|
|
||||||
<a href="javascript:history.back()" id="back-link">Back</a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
{% block foot %}
|
|
||||||
<footer>
|
<footer>
|
||||||
<div id="credits">
|
<div id="credits">
|
||||||
<div>
|
<div>
|
||||||
|
@ -63,17 +51,9 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
{% endblock %}
|
|
||||||
{% endblock %}
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var context = "{{servlet-context}}";
|
var context = "{{servlet-context}}";
|
||||||
var csrfToken = "{{csrf-token}}";
|
var csrfToken = "{{csrf-token}}";
|
||||||
</script>
|
</script>
|
||||||
{% block extra-script %}
|
|
||||||
{% endblock %}
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,22 +1,30 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml"
|
<html>
|
||||||
xmlns:html="http://www.w3.org/1999/xhtml">
|
|
||||||
<head>
|
<head>
|
||||||
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<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-common.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="css/yyy-site.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"/>
|
<link href="https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow" rel="stylesheet"/>
|
||||||
<title>{% block title %}{% endblock %}{{title}}</title>
|
<title>{{title}}</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
{% block whole-page %}
|
||||||
|
{% block top %}
|
||||||
<header>
|
<header>
|
||||||
<div id="nav">
|
<div id="nav">
|
||||||
<img id="nav-icon" src="img/threelines.png" alt="Menu"/>
|
<img id="nav-icon" src="img/threelines.png" alt="Menu"/>
|
||||||
<menu id="nav-menu" class="nav">
|
<menu id="nav-menu" class="nav">
|
||||||
<li class=""><a href="home">Home</a></li>
|
<li class=""><a href="index.html">Home</a></li>
|
||||||
<li class=""><a href="auth">Login</a></li>
|
<li class=""><a href="library.html">Library</a></li>
|
||||||
<li class=""><a href="about">About</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>
|
</menu>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -24,7 +32,7 @@
|
||||||
{{title}}
|
{{title}}
|
||||||
</h1>
|
</h1>
|
||||||
</header>
|
</header>
|
||||||
|
{% endblock %}
|
||||||
<div id="main-container" class="container">
|
<div id="main-container" class="container">
|
||||||
<div id="big-links">
|
<div id="big-links">
|
||||||
{% block big-links %}
|
{% block big-links %}
|
||||||
|
@ -34,7 +42,12 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
|
<br clear="both"/>
|
||||||
|
<div id="back-link-container">
|
||||||
|
<a href="javascript:history.back()" id="back-link">Back</a>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
{% block foot %}
|
||||||
<footer>
|
<footer>
|
||||||
<div id="credits">
|
<div id="credits">
|
||||||
<div>
|
<div>
|
||||||
|
@ -51,9 +64,17 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
{% endblock %}
|
||||||
|
{% endblock %}
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var context = "{{servlet-context}}";
|
var context = "{{servlet-context}}";
|
||||||
var csrfToken = "{{csrf-token}}";
|
var csrfToken = "{{csrf-token}}";
|
||||||
|
{% block extra-script %}
|
||||||
|
{% endblock %}
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
{% extends "base-unauthenticated.html" %}
|
{% extends "base-unauthenticated.html" %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<p>
|
<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.
|
This is a temporary login form.
|
||||||
</p>
|
</p>
|
||||||
<form action="auth" method="post">
|
<form action="auth" method="post">
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
[mount.core :as mount]
|
[mount.core :as mount]
|
||||||
[youyesyet.middleware :as middleware]
|
[youyesyet.middleware :as middleware]
|
||||||
[clojure.tools.logging :as log]
|
[clojure.tools.logging :as log]
|
||||||
|
[youyesyet.db.core :as db]
|
||||||
[youyesyet.config :refer [env]]))
|
[youyesyet.config :refer [env]]))
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
@ -42,6 +43,8 @@
|
||||||
:start ((or (:init defaults) identity))
|
:start ((or (:init defaults) identity))
|
||||||
:stop ((or (:stop defaults) identity)))
|
:stop ((or (:stop defaults) identity)))
|
||||||
|
|
||||||
|
;;(mount/start db/*db*)
|
||||||
|
|
||||||
(defn init
|
(defn init
|
||||||
"init will be called once when
|
"init will be called once when
|
||||||
app is deployed as a servlet on
|
app is deployed as a servlet on
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
(ns ^{:doc "Routes/pages available to unauthenticated users."
|
(ns ^{:doc "Routes/pages available to unauthenticated users."
|
||||||
:author "Simon Brooke"} youyesyet.routes.home
|
:author "Simon Brooke"} youyesyet.routes.home
|
||||||
(:require [clojure.walk :refer [keywordize-keys]]
|
(:require [clojure.walk :refer [keywordize-keys]]
|
||||||
|
[clojure.java.io :refer [input-stream]]
|
||||||
[noir.response :as nresponse]
|
[noir.response :as nresponse]
|
||||||
[noir.util.route :as route]
|
[noir.util.route :as route]
|
||||||
|
[ring.util.http-response :refer [content-type ok]]
|
||||||
[youyesyet.layout :as layout]
|
[youyesyet.layout :as layout]
|
||||||
[youyesyet.db.core :as db-core]
|
[youyesyet.db.core :as db-core]
|
||||||
[compojure.core :refer [defroutes GET POST]]
|
[compojure.core :refer [defroutes GET POST]]
|
||||||
|
@ -95,6 +97,10 @@
|
||||||
|
|
||||||
(defroutes home-routes
|
(defroutes home-routes
|
||||||
(GET "/" [] (home-page))
|
(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 "/home" [] (home-page))
|
||||||
(GET "/about" [] (about-page))
|
(GET "/about" [] (about-page))
|
||||||
(GET "/roles" request (route/restricted (roles-page request)))
|
(GET "/roles" request (route/restricted (roles-page request)))
|
||||||
|
|
|
@ -14,32 +14,32 @@
|
||||||
</documentation>
|
</documentation>
|
||||||
<content>
|
<content>
|
||||||
<head>
|
<head>
|
||||||
<html:meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||||
<html:meta name="viewport" content="width=device-width, initial-scale=1"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
<html:link rel="stylesheet" type="text/css" href="css/yyy-common.css" />
|
<link rel="stylesheet" type="text/css" href="css/yyy-common.css" />
|
||||||
<html:link rel="stylesheet" type="text/css" href="css/yyy-site.css" />
|
<link rel="stylesheet" type="text/css" href="css/yyy-site.css" />
|
||||||
<html:link rel="stylesheet" type="text/css" href="css/spinner.css" />
|
<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"/>
|
<link href="https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow" rel="stylesheet"/>
|
||||||
<html:title>{{site-title}}: {{title}}</html:title>
|
<title>{{site-title}}: {{title}}</title>
|
||||||
</head>
|
</head>
|
||||||
<top> </top>
|
<top> </top>
|
||||||
<foot>
|
<foot>
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id="credits">
|
<div id="credits">
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src="img/credits/ric-logo.png" width="24" height="24"/>
|
<img src="img/credits/ric-logo.png" width="24" height="24"/>
|
||||||
A project of the
|
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}}
|
Version {{version}}
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<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> ||
|
<img height="16" width="16" alt="Clojure" src="img/credits/luminus-logo.png"/>Built with <a href="http://www.luminusweb.net/">LuminusWeb</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> ||
|
<img height="16" width="16" alt="Clojure" src="img/credits/clojure-icon.gif"/> Powered by <a href="http://clojure.org">Clojure</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> ||
|
<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> ||
|
||||||
<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>
|
<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>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
</foot>
|
</foot>
|
||||||
</content>
|
</content>
|
||||||
<typedef name="postcode" type="string"
|
<typedef name="postcode" type="string"
|
||||||
|
|
|
@ -23,32 +23,32 @@
|
||||||
</documentation>
|
</documentation>
|
||||||
<content>
|
<content>
|
||||||
<head>
|
<head>
|
||||||
<html:meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||||
<html:meta name="viewport" content="width=device-width, initial-scale=1"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
<html:link rel="stylesheet" type="text/css" href="css/yyy-common.css"/>
|
<link rel="stylesheet" type="text/css" href="css/yyy-common.css"/>
|
||||||
<html:link rel="stylesheet" type="text/css" href="css/yyy-site.css"/>
|
<link rel="stylesheet" type="text/css" href="css/yyy-site.css"/>
|
||||||
<html:link rel="stylesheet" type="text/css" href="css/spinner.css"/>
|
<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"/>
|
<link href="https://fonts.googleapis.com/css?family=Archivo+Black|Archivo+Narrow" rel="stylesheet"/>
|
||||||
<html:title>{{site-title}}: {{title}}</html:title>
|
<title>{{site-title}}: {{title}}</title>
|
||||||
</head>
|
</head>
|
||||||
<top> </top>
|
<top> </top>
|
||||||
<foot>
|
<foot>
|
||||||
<html:footer>
|
<footer>
|
||||||
<html:div id="credits">
|
<div id="credits">
|
||||||
<html:div>
|
<div>
|
||||||
<html:img src="img/credits/ric-logo.png" width="24" height="24"/>
|
<img src="img/credits/ric-logo.png" width="24" height="24"/>
|
||||||
A project of the
|
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}}
|
Version {{version}}
|
||||||
</html:div>
|
</div>
|
||||||
<html:div>
|
<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> ||
|
<img height="16" width="16" alt="Clojure" src="img/credits/luminus-logo.png"/>Built with <a href="http://www.luminusweb.net/">LuminusWeb</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> ||
|
<img height="16" width="16" alt="Clojure" src="img/credits/clojure-icon.gif"/> Powered by <a href="http://clojure.org">Clojure</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> ||
|
<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> ||
|
||||||
<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>
|
<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>
|
||||||
</html:div>
|
</div>
|
||||||
</html:div>
|
</div>
|
||||||
</html:footer>
|
</footer>
|
||||||
</foot>
|
</foot>
|
||||||
</content>
|
</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">
|
<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">
|
||||||
|
|
Loading…
Reference in a new issue