I'm almost satisfied; map not scrolling to device location on startup
This commit is contained in:
parent
b7c745a0a4
commit
439f5a2546
10 changed files with 89 additions and 224 deletions
|
|
@ -362,7 +362,6 @@ th {
|
|||
|
||||
/* content of the current page in the Wiki - editable, provided by users. Within main-container */
|
||||
#content {
|
||||
border: thin solid silver;
|
||||
width: 80%;
|
||||
float: right;
|
||||
padding-bottom: 5em;
|
||||
|
|
@ -396,7 +395,6 @@ th {
|
|||
|
||||
/* content of the current in the Wiki - editable, provided by users. Within main-container */
|
||||
#content {
|
||||
border: thin solid silver;
|
||||
width: 100%;
|
||||
padding-bottom: 2em;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ SELECT DISTINCT request.*,
|
|||
addresses.address ||', '|| addresses.postcode ||', '|| visits.date AS visit_id_expanded,
|
||||
request.issue_id as issue_id_expanded,
|
||||
request.method_id AS method_id_expanded,
|
||||
visits.date
|
||||
visits.date AS raised
|
||||
FROM followuprequests as request,
|
||||
ln_experts_issues_canvassers as expertise,
|
||||
canvassers as experts,
|
||||
|
|
@ -58,7 +58,7 @@ and request.visit_id = visits.id
|
|||
and visits.address_id = addresses.id
|
||||
and request.issue_id = expertise.issue_id
|
||||
and expertise.canvasser_id = :expert
|
||||
ORDER BY visits.date desc
|
||||
ORDER BY raised
|
||||
|
||||
--:name get-last-visit-by-canvasser :? :1
|
||||
--:doc returns the most recent visit record of the canvasser with the specified `:id`
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ Add a new Followuprequest
|
|||
Elector
|
||||
</th>
|
||||
<th>
|
||||
Visit
|
||||
Raised
|
||||
</th>
|
||||
<th>
|
||||
Issue
|
||||
|
|
@ -56,7 +56,7 @@ Method
|
|||
<input id='elector_id' type='text' name='elector_id' value='{{ params.elector_id }}'/>
|
||||
</th>
|
||||
<th>
|
||||
<input id='visit_id' type='text' name='visit_id' value='{{ params.visit_id }}'/>
|
||||
<input id='raised' type='text' name='raised' value='{{ params.raised }}'/>
|
||||
</th>
|
||||
<th>
|
||||
<input id='issue_id' type='text' name='issue_id' value='{{ params.issue_id }}'/>
|
||||
|
|
@ -78,9 +78,7 @@ Method
|
|||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href='{{servlet-context}}/form-visits-Visit?id={{ record.visit_id }}'>
|
||||
{{ record.visit_id_expanded }}
|
||||
</a>
|
||||
{{ record.raised}}
|
||||
</td>
|
||||
<td>
|
||||
<a href='{{servlet-context}}/form-issues-Issue?id={{ record.issue_id }}'>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue