Massive progress, following sorting the data import problem
This commit is contained in:
parent
acfaf985fa
commit
88468461fd
15
env/dev/clj/youyesyet/dev_middleware.clj
vendored
15
env/dev/clj/youyesyet/dev_middleware.clj
vendored
|
@ -1,10 +1,13 @@
|
||||||
(ns youyesyet.dev-middleware
|
(ns youyesyet.dev-middleware
|
||||||
(:require [ring.middleware.reload :refer [wrap-reload]]
|
(:require
|
||||||
|
;; [ring.middleware.reload :refer [wrap-reload]]
|
||||||
[selmer.middleware :refer [wrap-error-page]]
|
[selmer.middleware :refer [wrap-error-page]]
|
||||||
[prone.middleware :refer [wrap-exceptions]]))
|
[prone.middleware :refer [wrap-exceptions]]
|
||||||
|
))
|
||||||
|
|
||||||
(defn wrap-dev [handler]
|
(defn wrap-dev [handler]
|
||||||
(-> handler
|
(-> handler
|
||||||
wrap-reload
|
;; wrap-reload
|
||||||
wrap-error-page
|
wrap-error-page
|
||||||
wrap-exceptions))
|
wrap-exceptions
|
||||||
|
))
|
||||||
|
|
6
env/dev/clj/youyesyet/env.clj
vendored
6
env/dev/clj/youyesyet/env.clj
vendored
|
@ -1,7 +1,8 @@
|
||||||
(ns youyesyet.env
|
(ns youyesyet.env
|
||||||
(:require [selmer.parser :as parser]
|
(:require [selmer.parser :as parser]
|
||||||
[clojure.tools.logging :as log]
|
[clojure.tools.logging :as log]
|
||||||
[youyesyet.dev-middleware :refer [wrap-dev]]))
|
[youyesyet.dev-middleware :refer [wrap-dev]]
|
||||||
|
))
|
||||||
|
|
||||||
(def defaults
|
(def defaults
|
||||||
{:init
|
{:init
|
||||||
|
@ -11,4 +12,5 @@
|
||||||
:stop
|
:stop
|
||||||
(fn []
|
(fn []
|
||||||
(log/info "\n-=[youyesyet has shut down successfully]=-"))
|
(log/info "\n-=[youyesyet has shut down successfully]=-"))
|
||||||
:middleware wrap-dev})
|
:middleware wrap-dev
|
||||||
|
})
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
-- File queries.sql
|
-- File queries.sql
|
||||||
--
|
--
|
||||||
-- autogenerated by adl.to-hugsql-queries at 2018-06-19T18:51:50.013Z
|
-- autogenerated by adl.to-hugsql-queries at 2018-06-29T10:10:58.177Z
|
||||||
--
|
--
|
||||||
-- See [Application Description
|
-- See [Application Description
|
||||||
-- Language](https://github.com/simon-brooke/adl).
|
-- Language](https://github.com/simon-brooke/adl).
|
||||||
|
@ -728,15 +728,15 @@ ORDER BY lv_visits.address_id,
|
||||||
-- :name search-strings-address :? :1
|
-- :name search-strings-address :? :1
|
||||||
-- :doc selects existing address records having any string field matching the parameter of the same name by substring match
|
-- :doc selects existing address records having any string field matching the parameter of the same name by substring match
|
||||||
SELECT * FROM lv_addresses
|
SELECT * FROM lv_addresses
|
||||||
WHERE
|
WHERE false
|
||||||
address LIKE '%params.address%'
|
--~ (if (:address params) "OR address LIKE '%:address%'")
|
||||||
OR postcode = params.postcode
|
--~ (if (:postcode params) "OR postcode LIKE '%:postcode%'")
|
||||||
OR phone LIKE '%params.phone%'
|
--~ (if (:phone params) "OR phone LIKE '%:phone%'")
|
||||||
OR district_id = params.district_id
|
--~ (if (:district_id params) "OR district_id = :district_id")
|
||||||
OR latitude = params.latitude
|
--~ (if (:latitude params) "OR latitude = :latitude")
|
||||||
OR longitude = params.longitude
|
--~ (if (:longitude params) "OR longitude = :longitude")
|
||||||
OR locality = params.locality
|
--~ (if (:locality params) "OR locality = :locality")
|
||||||
OR id = params.id
|
--~ (if (:id params) "OR id = :id")
|
||||||
ORDER BY lv_addresses.address,
|
ORDER BY lv_addresses.address,
|
||||||
lv_addresses.postcode,
|
lv_addresses.postcode,
|
||||||
lv_addresses.id
|
lv_addresses.id
|
||||||
|
@ -746,24 +746,24 @@ ORDER BY lv_addresses.address,
|
||||||
-- :name search-strings-authority :? :1
|
-- :name search-strings-authority :? :1
|
||||||
-- :doc selects existing authority records having any string field matching the parameter of the same name by substring match
|
-- :doc selects existing authority records having any string field matching the parameter of the same name by substring match
|
||||||
SELECT * FROM lv_authorities
|
SELECT * FROM lv_authorities
|
||||||
WHERE
|
WHERE false
|
||||||
id LIKE '%params.id%'
|
--~ (if (:id params) "OR id LIKE '%:id%'")
|
||||||
--~ (if (:offset params) "OFFSET :offset ")
|
--~ (if (:offset params) "OFFSET :offset ")
|
||||||
--~ (if (:limit params) "LIMIT :limit" "LIMIT 100")
|
--~ (if (:limit params) "LIMIT :limit" "LIMIT 100")
|
||||||
|
|
||||||
-- :name search-strings-canvasser :? :1
|
-- :name search-strings-canvasser :? :1
|
||||||
-- :doc selects existing canvasser records having any string field matching the parameter of the same name by substring match
|
-- :doc selects existing canvasser records having any string field matching the parameter of the same name by substring match
|
||||||
SELECT * FROM lv_canvassers
|
SELECT * FROM lv_canvassers
|
||||||
WHERE
|
WHERE false
|
||||||
username LIKE '%params.username%'
|
--~ (if (:username params) "OR username LIKE '%:username%'")
|
||||||
OR fullname LIKE '%params.fullname%'
|
--~ (if (:fullname params) "OR fullname LIKE '%:fullname%'")
|
||||||
OR elector_id = params.elector_id
|
--~ (if (:elector_id params) "OR elector_id = :elector_id")
|
||||||
OR address_id = params.address_id
|
--~ (if (:address_id params) "OR address_id = :address_id")
|
||||||
OR phone LIKE '%params.phone%'
|
--~ (if (:phone params) "OR phone LIKE '%:phone%'")
|
||||||
OR email LIKE '%params.email%'
|
--~ (if (:email params) "OR email LIKE '%:email%'")
|
||||||
OR authority_id = params.authority_id
|
--~ (if (:authority_id params) "OR authority_id = :authority_id")
|
||||||
OR authorised = params.authorised
|
--~ (if (:authorised params) "OR authorised = :authorised")
|
||||||
OR id = params.id
|
--~ (if (:id params) "OR id = :id")
|
||||||
ORDER BY lv_canvassers.username,
|
ORDER BY lv_canvassers.username,
|
||||||
lv_canvassers.fullname,
|
lv_canvassers.fullname,
|
||||||
lv_canvassers.email,
|
lv_canvassers.email,
|
||||||
|
@ -774,9 +774,9 @@ ORDER BY lv_canvassers.username,
|
||||||
-- :name search-strings-district :? :1
|
-- :name search-strings-district :? :1
|
||||||
-- :doc selects existing district records having any string field matching the parameter of the same name by substring match
|
-- :doc selects existing district records having any string field matching the parameter of the same name by substring match
|
||||||
SELECT * FROM lv_districts
|
SELECT * FROM lv_districts
|
||||||
WHERE
|
WHERE false
|
||||||
name LIKE '%params.name%'
|
--~ (if (:name params) "OR name LIKE '%:name%'")
|
||||||
OR id = params.id
|
--~ (if (:id params) "OR id = :id")
|
||||||
ORDER BY lv_districts.name,
|
ORDER BY lv_districts.name,
|
||||||
lv_districts.id
|
lv_districts.id
|
||||||
--~ (if (:offset params) "OFFSET :offset ")
|
--~ (if (:offset params) "OFFSET :offset ")
|
||||||
|
@ -785,10 +785,10 @@ ORDER BY lv_districts.name,
|
||||||
-- :name search-strings-dwelling :? :1
|
-- :name search-strings-dwelling :? :1
|
||||||
-- :doc selects existing dwelling records having any string field matching the parameter of the same name by substring match
|
-- :doc selects existing dwelling records having any string field matching the parameter of the same name by substring match
|
||||||
SELECT * FROM lv_dwellings
|
SELECT * FROM lv_dwellings
|
||||||
WHERE
|
WHERE false
|
||||||
address_id = params.address_id
|
--~ (if (:address_id params) "OR address_id = :address_id")
|
||||||
OR sub_address LIKE '%params.sub-address%'
|
--~ (if (:sub-address params) "OR sub_address LIKE '%:sub-address%'")
|
||||||
OR id = params.id
|
--~ (if (:id params) "OR id = :id")
|
||||||
ORDER BY lv_dwellings.address_id,
|
ORDER BY lv_dwellings.address_id,
|
||||||
lv_dwellings.sub_address,
|
lv_dwellings.sub_address,
|
||||||
lv_dwellings.id
|
lv_dwellings.id
|
||||||
|
@ -798,13 +798,13 @@ ORDER BY lv_dwellings.address_id,
|
||||||
-- :name search-strings-elector :? :1
|
-- :name search-strings-elector :? :1
|
||||||
-- :doc selects existing elector records having any string field matching the parameter of the same name by substring match
|
-- :doc selects existing elector records having any string field matching the parameter of the same name by substring match
|
||||||
SELECT * FROM lv_electors
|
SELECT * FROM lv_electors
|
||||||
WHERE
|
WHERE false
|
||||||
name LIKE '%params.name%'
|
--~ (if (:name params) "OR name LIKE '%:name%'")
|
||||||
OR dwelling_id = params.dwelling_id
|
--~ (if (:dwelling_id params) "OR dwelling_id = :dwelling_id")
|
||||||
OR phone LIKE '%params.phone%'
|
--~ (if (:phone params) "OR phone LIKE '%:phone%'")
|
||||||
OR email LIKE '%params.email%'
|
--~ (if (:email params) "OR email LIKE '%:email%'")
|
||||||
OR gender = params.gender
|
--~ (if (:gender params) "OR gender = :gender")
|
||||||
OR id = params.id
|
--~ (if (:id params) "OR id = :id")
|
||||||
ORDER BY lv_electors.name,
|
ORDER BY lv_electors.name,
|
||||||
lv_electors.phone,
|
lv_electors.phone,
|
||||||
lv_electors.email,
|
lv_electors.email,
|
||||||
|
@ -816,13 +816,13 @@ ORDER BY lv_electors.name,
|
||||||
-- :name search-strings-followupaction :? :1
|
-- :name search-strings-followupaction :? :1
|
||||||
-- :doc selects existing followupaction records having any string field matching the parameter of the same name by substring match
|
-- :doc selects existing followupaction records having any string field matching the parameter of the same name by substring match
|
||||||
SELECT * FROM lv_followupactions
|
SELECT * FROM lv_followupactions
|
||||||
WHERE
|
WHERE false
|
||||||
request_id = params.request_id
|
--~ (if (:request_id params) "OR request_id = :request_id")
|
||||||
OR actor = params.actor
|
--~ (if (:actor params) "OR actor = :actor")
|
||||||
OR date = 'params.date'
|
--~ (if (:date params) "OR date = ':date'")
|
||||||
OR notes LIKE '%params.notes%'
|
--~ (if (:notes params) "OR notes LIKE '%:notes%'")
|
||||||
OR closed = params.closed
|
--~ (if (:closed params) "OR closed = :closed")
|
||||||
OR id = params.id
|
--~ (if (:id params) "OR id = :id")
|
||||||
ORDER BY lv_followupactions.date,
|
ORDER BY lv_followupactions.date,
|
||||||
lv_followupactions.notes,
|
lv_followupactions.notes,
|
||||||
lv_followupactions.id
|
lv_followupactions.id
|
||||||
|
@ -832,20 +832,20 @@ ORDER BY lv_followupactions.date,
|
||||||
-- :name search-strings-followupmethod :? :1
|
-- :name search-strings-followupmethod :? :1
|
||||||
-- :doc selects existing followupmethod records having any string field matching the parameter of the same name by substring match
|
-- :doc selects existing followupmethod records having any string field matching the parameter of the same name by substring match
|
||||||
SELECT * FROM lv_followupmethods
|
SELECT * FROM lv_followupmethods
|
||||||
WHERE
|
WHERE false
|
||||||
id LIKE '%params.id%'
|
--~ (if (:id params) "OR id LIKE '%:id%'")
|
||||||
--~ (if (:offset params) "OFFSET :offset ")
|
--~ (if (:offset params) "OFFSET :offset ")
|
||||||
--~ (if (:limit params) "LIMIT :limit" "LIMIT 100")
|
--~ (if (:limit params) "LIMIT :limit" "LIMIT 100")
|
||||||
|
|
||||||
-- :name search-strings-followuprequest :? :1
|
-- :name search-strings-followuprequest :? :1
|
||||||
-- :doc selects existing followuprequest records having any string field matching the parameter of the same name by substring match
|
-- :doc selects existing followuprequest records having any string field matching the parameter of the same name by substring match
|
||||||
SELECT * FROM lv_followuprequests
|
SELECT * FROM lv_followuprequests
|
||||||
WHERE
|
WHERE false
|
||||||
elector_id = params.elector_id
|
--~ (if (:elector_id params) "OR elector_id = :elector_id")
|
||||||
OR visit_id = params.visit_id
|
--~ (if (:visit_id params) "OR visit_id = :visit_id")
|
||||||
OR issue_id = params.issue_id
|
--~ (if (:issue_id params) "OR issue_id = :issue_id")
|
||||||
OR method_id = params.method_id
|
--~ (if (:method_id params) "OR method_id = :method_id")
|
||||||
OR id = params.id
|
--~ (if (:id params) "OR id = :id")
|
||||||
ORDER BY lv_followuprequests.elector_id,
|
ORDER BY lv_followuprequests.elector_id,
|
||||||
lv_followuprequests.visit_id,
|
lv_followuprequests.visit_id,
|
||||||
lv_followuprequests.issue_id,
|
lv_followuprequests.issue_id,
|
||||||
|
@ -856,46 +856,46 @@ ORDER BY lv_followuprequests.elector_id,
|
||||||
-- :name search-strings-gender :? :1
|
-- :name search-strings-gender :? :1
|
||||||
-- :doc selects existing gender records having any string field matching the parameter of the same name by substring match
|
-- :doc selects existing gender records having any string field matching the parameter of the same name by substring match
|
||||||
SELECT * FROM lv_genders
|
SELECT * FROM lv_genders
|
||||||
WHERE
|
WHERE false
|
||||||
id LIKE '%params.id%'
|
--~ (if (:id params) "OR id LIKE '%:id%'")
|
||||||
--~ (if (:offset params) "OFFSET :offset ")
|
--~ (if (:offset params) "OFFSET :offset ")
|
||||||
--~ (if (:limit params) "LIMIT :limit" "LIMIT 100")
|
--~ (if (:limit params) "LIMIT :limit" "LIMIT 100")
|
||||||
|
|
||||||
-- :name search-strings-intention :? :1
|
-- :name search-strings-intention :? :1
|
||||||
-- :doc selects existing intention records having any string field matching the parameter of the same name by substring match
|
-- :doc selects existing intention records having any string field matching the parameter of the same name by substring match
|
||||||
SELECT * FROM lv_intentions
|
SELECT * FROM lv_intentions
|
||||||
WHERE
|
WHERE false
|
||||||
visit_id = params.visit_id
|
--~ (if (:visit_id params) "OR visit_id = :visit_id")
|
||||||
OR elector_id = params.elector_id
|
--~ (if (:elector_id params) "OR elector_id = :elector_id")
|
||||||
OR option_id = params.option_id
|
--~ (if (:option_id params) "OR option_id = :option_id")
|
||||||
OR Id = params.Id
|
--~ (if (:Id params) "OR Id = :Id")
|
||||||
--~ (if (:offset params) "OFFSET :offset ")
|
--~ (if (:offset params) "OFFSET :offset ")
|
||||||
--~ (if (:limit params) "LIMIT :limit" "LIMIT 100")
|
--~ (if (:limit params) "LIMIT :limit" "LIMIT 100")
|
||||||
|
|
||||||
-- :name search-strings-issue :? :1
|
-- :name search-strings-issue :? :1
|
||||||
-- :doc selects existing issue records having any string field matching the parameter of the same name by substring match
|
-- :doc selects existing issue records having any string field matching the parameter of the same name by substring match
|
||||||
SELECT * FROM lv_issues
|
SELECT * FROM lv_issues
|
||||||
WHERE
|
WHERE false
|
||||||
url LIKE '%params.url%'
|
--~ (if (:url params) "OR url LIKE '%:url%'")
|
||||||
OR current = params.current
|
--~ (if (:current params) "OR current = :current")
|
||||||
OR id LIKE '%params.id%'
|
--~ (if (:id params) "OR id LIKE '%:id%'")
|
||||||
--~ (if (:offset params) "OFFSET :offset ")
|
--~ (if (:offset params) "OFFSET :offset ")
|
||||||
--~ (if (:limit params) "LIMIT :limit" "LIMIT 100")
|
--~ (if (:limit params) "LIMIT :limit" "LIMIT 100")
|
||||||
|
|
||||||
-- :name search-strings-option :? :1
|
-- :name search-strings-option :? :1
|
||||||
-- :doc selects existing option records having any string field matching the parameter of the same name by substring match
|
-- :doc selects existing option records having any string field matching the parameter of the same name by substring match
|
||||||
SELECT * FROM lv_options
|
SELECT * FROM lv_options
|
||||||
WHERE
|
WHERE false
|
||||||
id LIKE '%params.id%'
|
--~ (if (:id params) "OR id LIKE '%:id%'")
|
||||||
--~ (if (:offset params) "OFFSET :offset ")
|
--~ (if (:offset params) "OFFSET :offset ")
|
||||||
--~ (if (:limit params) "LIMIT :limit" "LIMIT 100")
|
--~ (if (:limit params) "LIMIT :limit" "LIMIT 100")
|
||||||
|
|
||||||
-- :name search-strings-role :? :1
|
-- :name search-strings-role :? :1
|
||||||
-- :doc selects existing role records having any string field matching the parameter of the same name by substring match
|
-- :doc selects existing role records having any string field matching the parameter of the same name by substring match
|
||||||
SELECT * FROM lv_roles
|
SELECT * FROM lv_roles
|
||||||
WHERE
|
WHERE false
|
||||||
name LIKE '%params.name%'
|
--~ (if (:name params) "OR name LIKE '%:name%'")
|
||||||
OR id = params.id
|
--~ (if (:id params) "OR id = :id")
|
||||||
ORDER BY lv_roles.name,
|
ORDER BY lv_roles.name,
|
||||||
lv_roles.id
|
lv_roles.id
|
||||||
--~ (if (:offset params) "OFFSET :offset ")
|
--~ (if (:offset params) "OFFSET :offset ")
|
||||||
|
@ -904,12 +904,12 @@ ORDER BY lv_roles.name,
|
||||||
-- :name search-strings-team :? :1
|
-- :name search-strings-team :? :1
|
||||||
-- :doc selects existing team records having any string field matching the parameter of the same name by substring match
|
-- :doc selects existing team records having any string field matching the parameter of the same name by substring match
|
||||||
SELECT * FROM lv_teams
|
SELECT * FROM lv_teams
|
||||||
WHERE
|
WHERE false
|
||||||
name LIKE '%params.name%'
|
--~ (if (:name params) "OR name LIKE '%:name%'")
|
||||||
OR district_id = params.district_id
|
--~ (if (:district_id params) "OR district_id = :district_id")
|
||||||
OR latitude = params.latitude
|
--~ (if (:latitude params) "OR latitude = :latitude")
|
||||||
OR longitude = params.longitude
|
--~ (if (:longitude params) "OR longitude = :longitude")
|
||||||
OR id = params.id
|
--~ (if (:id params) "OR id = :id")
|
||||||
ORDER BY lv_teams.name,
|
ORDER BY lv_teams.name,
|
||||||
lv_teams.id
|
lv_teams.id
|
||||||
--~ (if (:offset params) "OFFSET :offset ")
|
--~ (if (:offset params) "OFFSET :offset ")
|
||||||
|
@ -918,11 +918,11 @@ ORDER BY lv_teams.name,
|
||||||
-- :name search-strings-visit :? :1
|
-- :name search-strings-visit :? :1
|
||||||
-- :doc selects existing visit records having any string field matching the parameter of the same name by substring match
|
-- :doc selects existing visit records having any string field matching the parameter of the same name by substring match
|
||||||
SELECT * FROM lv_visits
|
SELECT * FROM lv_visits
|
||||||
WHERE
|
WHERE false
|
||||||
address_id = params.address_id
|
--~ (if (:address_id params) "OR address_id = :address_id")
|
||||||
OR canvasser_id = params.canvasser_id
|
--~ (if (:canvasser_id params) "OR canvasser_id = :canvasser_id")
|
||||||
OR date = 'params.date'
|
--~ (if (:date params) "OR date = ':date'")
|
||||||
OR id = params.id
|
--~ (if (:id params) "OR id = :id")
|
||||||
ORDER BY lv_visits.address_id,
|
ORDER BY lv_visits.address_id,
|
||||||
lv_visits.date,
|
lv_visits.date,
|
||||||
lv_visits.id
|
lv_visits.id
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
--
|
--
|
||||||
-- auto-generated by [Application Description Language framework]
|
-- auto-generated by [Application Description Language framework]
|
||||||
--
|
--
|
||||||
-- (https://github.com/simon-brooke/adl) at 20180619T185151.055Z
|
-- (https://github.com/simon-brooke/adl) at 20180629T101059.126Z
|
||||||
--
|
--
|
||||||
--
|
--
|
||||||
-- A web-app intended to be used by canvassers campaigning for a
|
-- A web-app intended to be used by canvassers campaigning for a
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File application-index.html generated 2018-06-19T18:51:51.700Z by adl.to-selmer-templates.
|
<!-- File application-index.html generated 2018-06-29T10:10:59.615Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File form-addresses-Address.html generated 2018-06-19T18:51:51.676Z by adl.to-selmer-templates.
|
<!-- File form-addresses-Address.html generated 2018-06-29T10:10:59.603Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
@ -29,7 +29,7 @@ See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
id
|
id
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='id' name='id' type='text' value='{{record.id}}'/>
|
<input id='id' name='id' type='text' value='{{record.id}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='id' name='id' class='pseudo-widget disabled'>
|
<span id='id' name='id' class='pseudo-widget disabled'>
|
||||||
|
@ -47,7 +47,7 @@ You are not permitted to view id of addresses
|
||||||
address
|
address
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='address' name='address' type='text' value='{{record.address}}'/>
|
<input id='address' name='address' type='text' value='{{record.address}}' maxlength='256' size='60'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='address' name='address' class='pseudo-widget disabled'>
|
<span id='address' name='address' class='pseudo-widget disabled'>
|
||||||
|
@ -65,7 +65,7 @@ You are not permitted to view address of addresses
|
||||||
postcode
|
postcode
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='postcode' name='postcode' type='text' value='{{record.postcode}}'/>
|
<input id='postcode' name='postcode' type='text' value='{{record.postcode}}' maxlength='16' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='postcode' name='postcode' class='pseudo-widget disabled'>
|
<span id='postcode' name='postcode' class='pseudo-widget disabled'>
|
||||||
|
@ -83,7 +83,7 @@ You are not permitted to view postcode of addresses
|
||||||
phone
|
phone
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='phone' name='phone' type='text' value='{{record.phone}}'/>
|
<input id='phone' name='phone' type='text' value='{{record.phone}}' maxlength='16' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='phone' name='phone' class='pseudo-widget disabled'>
|
<span id='phone' name='phone' class='pseudo-widget disabled'>
|
||||||
|
@ -124,7 +124,7 @@ You are not permitted to view district_id of addresses
|
||||||
latitude
|
latitude
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='latitude' name='latitude' type='number' value='{{record.latitude}}'/>
|
<input id='latitude' name='latitude' type='number' value='{{record.latitude}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='latitude' name='latitude' class='pseudo-widget disabled'>
|
<span id='latitude' name='latitude' class='pseudo-widget disabled'>
|
||||||
|
@ -142,7 +142,7 @@ You are not permitted to view latitude of addresses
|
||||||
longitude
|
longitude
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='longitude' name='longitude' type='number' value='{{record.longitude}}'/>
|
<input id='longitude' name='longitude' type='number' value='{{record.longitude}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='longitude' name='longitude' class='pseudo-widget disabled'>
|
<span id='longitude' name='longitude' class='pseudo-widget disabled'>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File form-authorities-Authority.html generated 2018-06-19T18:51:51.716Z by adl.to-selmer-templates.
|
<!-- File form-authorities-Authority.html generated 2018-06-29T10:10:59.623Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
@ -29,7 +29,7 @@ See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
id
|
id
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='id' name='id' type='text' value='{{record.id}}'/>
|
<input id='id' name='id' type='text' value='{{record.id}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='id' name='id' class='pseudo-widget disabled'>
|
<span id='id' name='id' class='pseudo-widget disabled'>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File form-canvassers-Canvasser.html generated 2018-06-19T18:51:51.720Z by adl.to-selmer-templates.
|
<!-- File form-canvassers-Canvasser.html generated 2018-06-29T10:10:59.624Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
@ -29,7 +29,7 @@ See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
id
|
id
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers admin %}
|
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers admin %}
|
||||||
<input id='id' name='id' type='text' value='{{record.id}}'/>
|
<input id='id' name='id' type='text' value='{{record.id}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='id' name='id' class='pseudo-widget disabled'>
|
<span id='id' name='id' class='pseudo-widget disabled'>
|
||||||
|
@ -47,7 +47,7 @@ You are not permitted to view id of canvassers
|
||||||
username
|
username
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers admin %}
|
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers admin %}
|
||||||
<input id='username' name='username' type='text' value='{{record.username}}'/>
|
<input id='username' name='username' type='text' value='{{record.username}}' maxlength='32' size='32'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='username' name='username' class='pseudo-widget disabled'>
|
<span id='username' name='username' class='pseudo-widget disabled'>
|
||||||
|
@ -65,7 +65,7 @@ You are not permitted to view username of canvassers
|
||||||
fullname
|
fullname
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers admin %}
|
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers admin %}
|
||||||
<input id='fullname' name='fullname' type='text' value='{{record.fullname}}'/>
|
<input id='fullname' name='fullname' type='text' value='{{record.fullname}}' maxlength='64' size='60'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='fullname' name='fullname' class='pseudo-widget disabled'>
|
<span id='fullname' name='fullname' class='pseudo-widget disabled'>
|
||||||
|
@ -129,7 +129,7 @@ You are not permitted to view address_id of canvassers
|
||||||
phone
|
phone
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers admin %}
|
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers admin %}
|
||||||
<input id='phone' name='phone' type='text' value='{{record.phone}}'/>
|
<input id='phone' name='phone' type='text' value='{{record.phone}}' maxlength='16' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='phone' name='phone' class='pseudo-widget disabled'>
|
<span id='phone' name='phone' class='pseudo-widget disabled'>
|
||||||
|
@ -147,7 +147,7 @@ You are not permitted to view phone of canvassers
|
||||||
email
|
email
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers admin %}
|
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers admin %}
|
||||||
<input id='email' name='email' type='text' value='{{record.email}}'/>
|
<input id='email' name='email' type='text' value='{{record.email}}' maxlength='128' size='60'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='email' name='email' class='pseudo-widget disabled'>
|
<span id='email' name='email' class='pseudo-widget disabled'>
|
||||||
|
@ -188,7 +188,7 @@ You are not permitted to view authority_id of canvassers
|
||||||
authorised
|
authorised
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers admin %}
|
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers admin %}
|
||||||
<input id='authorised' name='authorised' type='checkbox' value='{{record.authorised}}'/>
|
<input id='authorised' name='authorised' type='checkbox' value='{{record.authorised}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='authorised' name='authorised' class='pseudo-widget disabled'>
|
<span id='authorised' name='authorised' class='pseudo-widget disabled'>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File form-districts-District.html generated 2018-06-19T18:51:51.662Z by adl.to-selmer-templates.
|
<!-- File form-districts-District.html generated 2018-06-29T10:10:59.594Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
@ -29,7 +29,7 @@ See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
id
|
id
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin admin %}
|
{% ifmemberof admin admin %}
|
||||||
<input id='id' name='id' type='text' value='{{record.id}}'/>
|
<input id='id' name='id' type='text' value='{{record.id}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof public admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof public admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='id' name='id' class='pseudo-widget disabled'>
|
<span id='id' name='id' class='pseudo-widget disabled'>
|
||||||
|
@ -47,7 +47,7 @@ You are not permitted to view id of districts
|
||||||
name
|
name
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin admin %}
|
{% ifmemberof admin admin %}
|
||||||
<input id='name' name='name' type='text' value='{{record.name}}'/>
|
<input id='name' name='name' type='text' value='{{record.name}}' maxlength='64' size='60'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof public admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof public admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='name' name='name' class='pseudo-widget disabled'>
|
<span id='name' name='name' class='pseudo-widget disabled'>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File form-dwellings-Dwelling.html generated 2018-06-19T18:51:51.739Z by adl.to-selmer-templates.
|
<!-- File form-dwellings-Dwelling.html generated 2018-06-29T10:10:59.636Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
@ -29,7 +29,7 @@ See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
id
|
id
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='id' name='id' type='text' value='{{record.id}}'/>
|
<input id='id' name='id' type='text' value='{{record.id}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='id' name='id' class='pseudo-widget disabled'>
|
<span id='id' name='id' class='pseudo-widget disabled'>
|
||||||
|
@ -70,7 +70,7 @@ You are not permitted to view address_id of dwellings
|
||||||
sub-address
|
sub-address
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='sub-address' name='sub-address' type='text' value='{{record.sub-address}}'/>
|
<input id='sub-address' name='sub-address' type='text' value='{{record.sub-address}}' maxlength='32' size='32'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='sub-address' name='sub-address' class='pseudo-widget disabled'>
|
<span id='sub-address' name='sub-address' class='pseudo-widget disabled'>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File form-electors-Elector.html generated 2018-06-19T18:51:51.709Z by adl.to-selmer-templates.
|
<!-- File form-electors-Elector.html generated 2018-06-29T10:10:59.619Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
@ -29,7 +29,7 @@ See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
id
|
id
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='id' name='id' type='text' value='{{record.id}}'/>
|
<input id='id' name='id' type='text' value='{{record.id}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='id' name='id' class='pseudo-widget disabled'>
|
<span id='id' name='id' class='pseudo-widget disabled'>
|
||||||
|
@ -47,7 +47,7 @@ You are not permitted to view id of electors
|
||||||
name
|
name
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='name' name='name' type='text' value='{{record.name}}'/>
|
<input id='name' name='name' type='text' value='{{record.name}}' maxlength='64' size='60'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='name' name='name' class='pseudo-widget disabled'>
|
<span id='name' name='name' class='pseudo-widget disabled'>
|
||||||
|
@ -88,7 +88,7 @@ You are not permitted to view dwelling_id of electors
|
||||||
phone
|
phone
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='phone' name='phone' type='text' value='{{record.phone}}'/>
|
<input id='phone' name='phone' type='text' value='{{record.phone}}' maxlength='16' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='phone' name='phone' class='pseudo-widget disabled'>
|
<span id='phone' name='phone' class='pseudo-widget disabled'>
|
||||||
|
@ -106,7 +106,7 @@ You are not permitted to view phone of electors
|
||||||
email
|
email
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='email' name='email' type='text' value='{{record.email}}'/>
|
<input id='email' name='email' type='text' value='{{record.email}}' maxlength='128' size='60'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='email' name='email' class='pseudo-widget disabled'>
|
<span id='email' name='email' class='pseudo-widget disabled'>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File form-followupactions-Followupaction.html generated 2018-06-19T18:51:51.743Z by adl.to-selmer-templates.
|
<!-- File form-followupactions-Followupaction.html generated 2018-06-29T10:10:59.639Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
@ -29,7 +29,7 @@ See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
id
|
id
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='id' name='id' type='text' value='{{record.id}}'/>
|
<input id='id' name='id' type='text' value='{{record.id}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof issueexperts canvassers analysts issueeditors admin %}
|
{% ifmemberof issueexperts canvassers analysts issueeditors admin %}
|
||||||
<span id='id' name='id' class='pseudo-widget disabled'>
|
<span id='id' name='id' class='pseudo-widget disabled'>
|
||||||
|
@ -93,7 +93,7 @@ You are not permitted to view actor of followupactions
|
||||||
date
|
date
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='date' name='date' type='text' value='{{record.date}}'/>
|
<input id='date' name='date' type='text' value='{{record.date}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof issueexperts canvassers analysts issueeditors admin %}
|
{% ifmemberof issueexperts canvassers analysts issueeditors admin %}
|
||||||
<span id='date' name='date' class='pseudo-widget disabled'>
|
<span id='date' name='date' class='pseudo-widget disabled'>
|
||||||
|
@ -111,7 +111,7 @@ You are not permitted to view date of followupactions
|
||||||
notes
|
notes
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='notes' name='notes' type='text' value='{{record.notes}}'/>
|
<input id='notes' name='notes' type='text' value='{{record.notes}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof issueexperts canvassers analysts issueeditors admin %}
|
{% ifmemberof issueexperts canvassers analysts issueeditors admin %}
|
||||||
<span id='notes' name='notes' class='pseudo-widget disabled'>
|
<span id='notes' name='notes' class='pseudo-widget disabled'>
|
||||||
|
@ -129,7 +129,7 @@ You are not permitted to view notes of followupactions
|
||||||
closed
|
closed
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='closed' name='closed' type='checkbox' value='{{record.closed}}'/>
|
<input id='closed' name='closed' type='checkbox' value='{{record.closed}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof issueexperts canvassers analysts issueeditors admin %}
|
{% ifmemberof issueexperts canvassers analysts issueeditors admin %}
|
||||||
<span id='closed' name='closed' class='pseudo-widget disabled'>
|
<span id='closed' name='closed' class='pseudo-widget disabled'>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File form-followupmethods-Followupmethod.html generated 2018-06-19T18:51:51.746Z by adl.to-selmer-templates.
|
<!-- File form-followupmethods-Followupmethod.html generated 2018-06-29T10:10:59.641Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
@ -29,7 +29,7 @@ See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
id
|
id
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='id' name='id' type='text' value='{{record.id}}'/>
|
<input id='id' name='id' type='text' value='{{record.id}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='id' name='id' class='pseudo-widget disabled'>
|
<span id='id' name='id' class='pseudo-widget disabled'>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File form-followuprequests-Followuprequest.html generated 2018-06-19T18:51:51.667Z by adl.to-selmer-templates.
|
<!-- File form-followuprequests-Followuprequest.html generated 2018-06-29T10:10:59.598Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
@ -29,7 +29,7 @@ See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
id
|
id
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='id' name='id' type='text' value='{{record.id}}'/>
|
<input id='id' name='id' type='text' value='{{record.id}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='id' name='id' class='pseudo-widget disabled'>
|
<span id='id' name='id' class='pseudo-widget disabled'>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File form-genders-Gender.html generated 2018-06-19T18:51:51.652Z by adl.to-selmer-templates.
|
<!-- File form-genders-Gender.html generated 2018-06-29T10:10:59.589Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
@ -29,7 +29,7 @@ See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
id
|
id
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='id' name='id' type='text' value='{{record.id}}'/>
|
<input id='id' name='id' type='text' value='{{record.id}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='id' name='id' class='pseudo-widget disabled'>
|
<span id='id' name='id' class='pseudo-widget disabled'>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File form-intentions-Intention.html generated 2018-06-19T18:51:51.734Z by adl.to-selmer-templates.
|
<!-- File form-intentions-Intention.html generated 2018-06-29T10:10:59.632Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File form-issues-Issue.html generated 2018-06-19T18:51:51.684Z by adl.to-selmer-templates.
|
<!-- File form-issues-Issue.html generated 2018-06-29T10:10:59.607Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
@ -29,7 +29,7 @@ See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
id
|
id
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof issueeditors admin %}
|
{% ifmemberof issueeditors admin %}
|
||||||
<input id='id' name='id' type='text' value='{{record.id}}'/>
|
<input id='id' name='id' type='text' value='{{record.id}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='id' name='id' class='pseudo-widget disabled'>
|
<span id='id' name='id' class='pseudo-widget disabled'>
|
||||||
|
@ -47,7 +47,7 @@ You are not permitted to view id of issues
|
||||||
url
|
url
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof issueeditors admin %}
|
{% ifmemberof issueeditors admin %}
|
||||||
<input id='url' name='url' type='text' value='{{record.url}}'/>
|
<input id='url' name='url' type='text' value='{{record.url}}' maxlength='256' size='60'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='url' name='url' class='pseudo-widget disabled'>
|
<span id='url' name='url' class='pseudo-widget disabled'>
|
||||||
|
@ -65,7 +65,7 @@ You are not permitted to view url of issues
|
||||||
current
|
current
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof issueeditors admin %}
|
{% ifmemberof issueeditors admin %}
|
||||||
<input id='current' name='current' type='checkbox' value='{{record.current}}'/>
|
<input id='current' name='current' type='checkbox' value='{{record.current}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='current' name='current' class='pseudo-widget disabled'>
|
<span id='current' name='current' class='pseudo-widget disabled'>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File form-options-Option.html generated 2018-06-19T18:51:51.733Z by adl.to-selmer-templates.
|
<!-- File form-options-Option.html generated 2018-06-29T10:10:59.631Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
@ -29,7 +29,7 @@ See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
id
|
id
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='id' name='id' type='text' value='{{record.id}}'/>
|
<input id='id' name='id' type='text' value='{{record.id}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='id' name='id' class='pseudo-widget disabled'>
|
<span id='id' name='id' class='pseudo-widget disabled'>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File form-roles-Role.html generated 2018-06-19T18:51:51.687Z by adl.to-selmer-templates.
|
<!-- File form-roles-Role.html generated 2018-06-29T10:10:59.609Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
@ -29,7 +29,7 @@ See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
id
|
id
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='id' name='id' type='text' value='{{record.id}}'/>
|
<input id='id' name='id' type='text' value='{{record.id}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='id' name='id' class='pseudo-widget disabled'>
|
<span id='id' name='id' class='pseudo-widget disabled'>
|
||||||
|
@ -47,7 +47,7 @@ You are not permitted to view id of roles
|
||||||
name
|
name
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin %}
|
{% ifmemberof admin %}
|
||||||
<input id='name' name='name' type='text' value='{{record.name}}'/>
|
<input id='name' name='name' type='text' value='{{record.name}}' maxlength='64' size='60'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='name' name='name' class='pseudo-widget disabled'>
|
<span id='name' name='name' class='pseudo-widget disabled'>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File form-teams-Team.html generated 2018-06-19T18:51:51.702Z by adl.to-selmer-templates.
|
<!-- File form-teams-Team.html generated 2018-06-29T10:10:59.616Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
@ -29,7 +29,7 @@ See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
id
|
id
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof teamorganisers admin %}
|
{% ifmemberof teamorganisers admin %}
|
||||||
<input id='id' name='id' type='text' value='{{record.id}}'/>
|
<input id='id' name='id' type='text' value='{{record.id}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='id' name='id' class='pseudo-widget disabled'>
|
<span id='id' name='id' class='pseudo-widget disabled'>
|
||||||
|
@ -47,7 +47,7 @@ You are not permitted to view id of teams
|
||||||
name
|
name
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof teamorganisers admin %}
|
{% ifmemberof teamorganisers admin %}
|
||||||
<input id='name' name='name' type='text' value='{{record.name}}'/>
|
<input id='name' name='name' type='text' value='{{record.name}}' maxlength='64' size='60'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='name' name='name' class='pseudo-widget disabled'>
|
<span id='name' name='name' class='pseudo-widget disabled'>
|
||||||
|
@ -88,7 +88,7 @@ You are not permitted to view district_id of teams
|
||||||
latitude
|
latitude
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof teamorganisers admin %}
|
{% ifmemberof teamorganisers admin %}
|
||||||
<input id='latitude' name='latitude' type='number' value='{{record.latitude}}'/>
|
<input id='latitude' name='latitude' type='number' value='{{record.latitude}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='latitude' name='latitude' class='pseudo-widget disabled'>
|
<span id='latitude' name='latitude' class='pseudo-widget disabled'>
|
||||||
|
@ -152,7 +152,7 @@ You are not permitted to view organisers of teams
|
||||||
longitude
|
longitude
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof teamorganisers admin %}
|
{% ifmemberof teamorganisers admin %}
|
||||||
<input id='longitude' name='longitude' type='number' value='{{record.longitude}}'/>
|
<input id='longitude' name='longitude' type='number' value='{{record.longitude}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='longitude' name='longitude' class='pseudo-widget disabled'>
|
<span id='longitude' name='longitude' class='pseudo-widget disabled'>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File form-visits-Visit.html generated 2018-06-19T18:51:51.695Z by adl.to-selmer-templates.
|
<!-- File form-visits-Visit.html generated 2018-06-29T10:10:59.613Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
@ -29,7 +29,7 @@ See [Application Description Language](https://github.com/simon-brooke/adl).-->
|
||||||
id
|
id
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin admin %}
|
{% ifmemberof admin admin %}
|
||||||
<input id='id' name='id' type='text' value='{{record.id}}'/>
|
<input id='id' name='id' type='text' value='{{record.id}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='id' name='id' class='pseudo-widget disabled'>
|
<span id='id' name='id' class='pseudo-widget disabled'>
|
||||||
|
@ -93,7 +93,7 @@ You are not permitted to view canvasser_id of visits
|
||||||
date
|
date
|
||||||
</label>
|
</label>
|
||||||
{% ifmemberof admin admin %}
|
{% ifmemberof admin admin %}
|
||||||
<input id='date' name='date' type='text' value='{{record.date}}'/>
|
<input id='date' name='date' type='text' value='{{record.date}}' maxlength='' size='16'/>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
{% ifmemberof canvassers teamorganisers issueexperts analysts issueeditors admin canvassers teamorganisers issueexperts analysts issueeditors admin %}
|
||||||
<span id='date' name='date' class='pseudo-widget disabled'>
|
<span id='date' name='date' class='pseudo-widget disabled'>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File list-addresses-Addresses.html generated 2018-06-19T18:51:51.718Z by adl.to-selmer-templates.
|
<!-- File list-addresses-Addresses.html generated 2018-06-29T10:10:59.623Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File list-authorities-Authorities.html generated 2018-06-19T18:51:51.665Z by adl.to-selmer-templates.
|
<!-- File list-authorities-Authorities.html generated 2018-06-29T10:10:59.597Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File list-canvassers-Canvassers.html generated 2018-06-19T18:51:51.737Z by adl.to-selmer-templates.
|
<!-- File list-canvassers-Canvassers.html generated 2018-06-29T10:10:59.635Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File list-districts-Districts.html generated 2018-06-19T18:51:51.729Z by adl.to-selmer-templates.
|
<!-- File list-districts-Districts.html generated 2018-06-29T10:10:59.629Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File list-dwellings-Dwellings.html generated 2018-06-19T18:51:51.714Z by adl.to-selmer-templates.
|
<!-- File list-dwellings-Dwellings.html generated 2018-06-29T10:10:59.622Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File list-electors-Electors.html generated 2018-06-19T18:51:51.682Z by adl.to-selmer-templates.
|
<!-- File list-electors-Electors.html generated 2018-06-29T10:10:59.606Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File list-followupactions-Followupactions.html generated 2018-06-19T18:51:51.736Z by adl.to-selmer-templates.
|
<!-- File list-followupactions-Followupactions.html generated 2018-06-29T10:10:59.634Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File list-followupmethods-Followupmethods.html generated 2018-06-19T18:51:51.693Z by adl.to-selmer-templates.
|
<!-- File list-followupmethods-Followupmethods.html generated 2018-06-29T10:10:59.612Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File list-followuprequests-Followuprequests.html generated 2018-06-19T18:51:51.657Z by adl.to-selmer-templates.
|
<!-- File list-followuprequests-Followuprequests.html generated 2018-06-29T10:10:59.592Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File list-genders-Genders.html generated 2018-06-19T18:51:51.642Z by adl.to-selmer-templates.
|
<!-- File list-genders-Genders.html generated 2018-06-29T10:10:59.584Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File list-intentions-Intentions.html generated 2018-06-19T18:51:51.741Z by adl.to-selmer-templates.
|
<!-- File list-intentions-Intentions.html generated 2018-06-29T10:10:59.638Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File list-issues-Issues.html generated 2018-06-19T18:51:51.731Z by adl.to-selmer-templates.
|
<!-- File list-issues-Issues.html generated 2018-06-29T10:10:59.630Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File list-options-Options.html generated 2018-06-19T18:51:51.660Z by adl.to-selmer-templates.
|
<!-- File list-options-Options.html generated 2018-06-29T10:10:59.593Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File list-roles-Roles.html generated 2018-06-19T18:51:51.691Z by adl.to-selmer-templates.
|
<!-- File list-roles-Roles.html generated 2018-06-29T10:10:59.611Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File list-teams-Teams.html generated 2018-06-19T18:51:51.649Z by adl.to-selmer-templates.
|
<!-- File list-teams-Teams.html generated 2018-06-29T10:10:59.588Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
<!-- File list-visits-Visits.html generated 2018-06-19T18:51:51.646Z by adl.to-selmer-templates.
|
<!-- File list-visits-Visits.html generated 2018-06-29T10:10:59.586Z 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 %}
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
|
||||||
|
|
|
@ -81,5 +81,4 @@
|
||||||
:title "page not found"})))))
|
:title "page not found"})))))
|
||||||
|
|
||||||
|
|
||||||
(def app #'app-routes)
|
(def app (middleware/wrap-base #'app-routes))
|
||||||
;; (middleware/wrap-base #'app-routes))
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
(ns
|
(ns
|
||||||
youyesyet.routes.auto
|
youyesyet.routes.auto
|
||||||
"User interface routes for Youyesyet auto-generated by [Application Description Language framework](https://github.com/simon-brooke/adl) at 20180619T185151.309Z"
|
"User interface routes for Youyesyet auto-generated by [Application Description Language framework](https://github.com/simon-brooke/adl) at 20180629T101059.328Z"
|
||||||
(:require
|
(:require
|
||||||
[adl-support.core :as support]
|
[adl-support.core :as support]
|
||||||
[clojure.java.io :as io]
|
[clojure.java.io :as io]
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
[youyesyet.routes.manual :as m]))
|
[youyesyet.routes.manual :as m]))
|
||||||
|
|
||||||
(defn
|
(defn
|
||||||
admin
|
index
|
||||||
[r]
|
[r]
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "application-index.html")
|
(support/resolve-template "application-index.html")
|
||||||
|
@ -24,8 +24,7 @@
|
||||||
list-addresses-Addresses
|
list-addresses-Addresses
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "list-addresses-Addresses.html")
|
(support/resolve-template "list-addresses-Addresses.html")
|
||||||
{:title "Addresses",
|
{:title "Addresses",
|
||||||
|
@ -40,8 +39,7 @@
|
||||||
form-addresses-Address
|
form-addresses-Address
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "form-addresses-Address.html")
|
(support/resolve-template "form-addresses-Address.html")
|
||||||
{:title "Address",
|
{:title "Address",
|
||||||
|
@ -54,8 +52,7 @@
|
||||||
list-authorities-Authorities
|
list-authorities-Authorities
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "list-authorities-Authorities.html")
|
(support/resolve-template "list-authorities-Authorities.html")
|
||||||
{:title "Authorities",
|
{:title "Authorities",
|
||||||
|
@ -70,8 +67,7 @@
|
||||||
form-authorities-Authority
|
form-authorities-Authority
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "form-authorities-Authority.html")
|
(support/resolve-template "form-authorities-Authority.html")
|
||||||
{:title "Authority",
|
{:title "Authority",
|
||||||
|
@ -86,8 +82,7 @@
|
||||||
list-canvassers-Canvassers
|
list-canvassers-Canvassers
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "list-canvassers-Canvassers.html")
|
(support/resolve-template "list-canvassers-Canvassers.html")
|
||||||
{:title "Canvassers",
|
{:title "Canvassers",
|
||||||
|
@ -102,8 +97,7 @@
|
||||||
form-canvassers-Canvasser
|
form-canvassers-Canvasser
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "form-canvassers-Canvasser.html")
|
(support/resolve-template "form-canvassers-Canvasser.html")
|
||||||
{:title "Canvasser",
|
{:title "Canvasser",
|
||||||
|
@ -121,8 +115,7 @@
|
||||||
list-districts-Districts
|
list-districts-Districts
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "list-districts-Districts.html")
|
(support/resolve-template "list-districts-Districts.html")
|
||||||
{:title "Districts",
|
{:title "Districts",
|
||||||
|
@ -137,8 +130,7 @@
|
||||||
form-districts-District
|
form-districts-District
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "form-districts-District.html")
|
(support/resolve-template "form-districts-District.html")
|
||||||
{:title "District",
|
{:title "District",
|
||||||
|
@ -153,8 +145,7 @@
|
||||||
list-dwellings-Dwellings
|
list-dwellings-Dwellings
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "list-dwellings-Dwellings.html")
|
(support/resolve-template "list-dwellings-Dwellings.html")
|
||||||
{:title "Dwellings",
|
{:title "Dwellings",
|
||||||
|
@ -169,8 +160,7 @@
|
||||||
form-dwellings-Dwelling
|
form-dwellings-Dwelling
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "form-dwellings-Dwelling.html")
|
(support/resolve-template "form-dwellings-Dwelling.html")
|
||||||
{:title "Dwelling",
|
{:title "Dwelling",
|
||||||
|
@ -186,8 +176,7 @@
|
||||||
list-electors-Electors
|
list-electors-Electors
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "list-electors-Electors.html")
|
(support/resolve-template "list-electors-Electors.html")
|
||||||
{:title "Electors",
|
{:title "Electors",
|
||||||
|
@ -202,8 +191,7 @@
|
||||||
form-electors-Elector
|
form-electors-Elector
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "form-electors-Elector.html")
|
(support/resolve-template "form-electors-Elector.html")
|
||||||
{:title "Elector",
|
{:title "Elector",
|
||||||
|
@ -217,8 +205,7 @@
|
||||||
list-followupactions-Followupactions
|
list-followupactions-Followupactions
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template
|
(support/resolve-template
|
||||||
"list-followupactions-Followupactions.html")
|
"list-followupactions-Followupactions.html")
|
||||||
|
@ -234,8 +221,7 @@
|
||||||
form-followupactions-Followupaction
|
form-followupactions-Followupaction
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template
|
(support/resolve-template
|
||||||
"form-followupactions-Followupaction.html")
|
"form-followupactions-Followupaction.html")
|
||||||
|
@ -253,8 +239,7 @@
|
||||||
list-followupmethods-Followupmethods
|
list-followupmethods-Followupmethods
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template
|
(support/resolve-template
|
||||||
"list-followupmethods-Followupmethods.html")
|
"list-followupmethods-Followupmethods.html")
|
||||||
|
@ -270,8 +255,7 @@
|
||||||
form-followupmethods-Followupmethod
|
form-followupmethods-Followupmethod
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template
|
(support/resolve-template
|
||||||
"form-followupmethods-Followupmethod.html")
|
"form-followupmethods-Followupmethod.html")
|
||||||
|
@ -287,8 +271,7 @@
|
||||||
list-followuprequests-Followuprequests
|
list-followuprequests-Followuprequests
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template
|
(support/resolve-template
|
||||||
"list-followuprequests-Followuprequests.html")
|
"list-followuprequests-Followuprequests.html")
|
||||||
|
@ -304,8 +287,7 @@
|
||||||
form-followuprequests-Followuprequest
|
form-followuprequests-Followuprequest
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template
|
(support/resolve-template
|
||||||
"form-followuprequests-Followuprequest.html")
|
"form-followuprequests-Followuprequest.html")
|
||||||
|
@ -325,8 +307,7 @@
|
||||||
list-genders-Genders
|
list-genders-Genders
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "list-genders-Genders.html")
|
(support/resolve-template "list-genders-Genders.html")
|
||||||
{:title "Genders",
|
{:title "Genders",
|
||||||
|
@ -341,8 +322,7 @@
|
||||||
form-genders-Gender
|
form-genders-Gender
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "form-genders-Gender.html")
|
(support/resolve-template "form-genders-Gender.html")
|
||||||
{:title "Gender",
|
{:title "Gender",
|
||||||
|
@ -357,8 +337,7 @@
|
||||||
list-intentions-Intentions
|
list-intentions-Intentions
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "list-intentions-Intentions.html")
|
(support/resolve-template "list-intentions-Intentions.html")
|
||||||
{:title "Intentions",
|
{:title "Intentions",
|
||||||
|
@ -373,8 +352,7 @@
|
||||||
form-intentions-Intention
|
form-intentions-Intention
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "form-intentions-Intention.html")
|
(support/resolve-template "form-intentions-Intention.html")
|
||||||
{:title "Intention",
|
{:title "Intention",
|
||||||
|
@ -392,8 +370,7 @@
|
||||||
list-issues-Issues
|
list-issues-Issues
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "list-issues-Issues.html")
|
(support/resolve-template "list-issues-Issues.html")
|
||||||
{:title "Issues",
|
{:title "Issues",
|
||||||
|
@ -408,8 +385,7 @@
|
||||||
form-issues-Issue
|
form-issues-Issue
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "form-issues-Issue.html")
|
(support/resolve-template "form-issues-Issue.html")
|
||||||
{:title "Issue",
|
{:title "Issue",
|
||||||
|
@ -421,8 +397,7 @@
|
||||||
list-options-Options
|
list-options-Options
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "list-options-Options.html")
|
(support/resolve-template "list-options-Options.html")
|
||||||
{:title "Options",
|
{:title "Options",
|
||||||
|
@ -437,8 +412,7 @@
|
||||||
form-options-Option
|
form-options-Option
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "form-options-Option.html")
|
(support/resolve-template "form-options-Option.html")
|
||||||
{:title "Option",
|
{:title "Option",
|
||||||
|
@ -453,8 +427,7 @@
|
||||||
list-roles-Roles
|
list-roles-Roles
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "list-roles-Roles.html")
|
(support/resolve-template "list-roles-Roles.html")
|
||||||
{:title "Roles",
|
{:title "Roles",
|
||||||
|
@ -469,8 +442,7 @@
|
||||||
form-roles-Role
|
form-roles-Role
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "form-roles-Role.html")
|
(support/resolve-template "form-roles-Role.html")
|
||||||
{:title "Role",
|
{:title "Role",
|
||||||
|
@ -482,8 +454,7 @@
|
||||||
list-teams-Teams
|
list-teams-Teams
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "list-teams-Teams.html")
|
(support/resolve-template "list-teams-Teams.html")
|
||||||
{:title "Teams",
|
{:title "Teams",
|
||||||
|
@ -498,8 +469,7 @@
|
||||||
form-teams-Team
|
form-teams-Team
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "form-teams-Team.html")
|
(support/resolve-template "form-teams-Team.html")
|
||||||
{:title "Team",
|
{:title "Team",
|
||||||
|
@ -512,8 +482,7 @@
|
||||||
list-visits-Visits
|
list-visits-Visits
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "list-visits-Visits.html")
|
(support/resolve-template "list-visits-Visits.html")
|
||||||
{:title "Visits",
|
{:title "Visits",
|
||||||
|
@ -528,8 +497,7 @@
|
||||||
form-visits-Visit
|
form-visits-Visit
|
||||||
[r]
|
[r]
|
||||||
(let
|
(let
|
||||||
[p
|
[p (support/massage-params (:params r))]
|
||||||
(merge (support/query-string-to-map (:query-string r)) (:params r))]
|
|
||||||
(l/render
|
(l/render
|
||||||
(support/resolve-template "form-visits-Visit.html")
|
(support/resolve-template "form-visits-Visit.html")
|
||||||
{:title "Visit",
|
{:title "Visit",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
(ns
|
(ns
|
||||||
youyesyet.routes.auto-json
|
youyesyet.routes.auto-json
|
||||||
"JSON routes for youyesyet auto-generated by [Application Description Language framework](https://github.com/simon-brooke/adl) at 20180619T185150.149Z"
|
"JSON routes for youyesyet auto-generated by [Application Description Language framework](https://github.com/simon-brooke/adl) at 20180629T101058.294Z"
|
||||||
(:require
|
(:require
|
||||||
[adl-support.core :as support]
|
[adl-support.core :as support]
|
||||||
[clojure.java.io :as io]
|
[clojure.java.io :as io]
|
||||||
|
|
Loading…
Reference in a new issue