-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3363 from AtlasOfLivingAustralia/feature/issue1724
ui to enter states/electorates manually and supporting code #1724
- Loading branch information
Showing
8 changed files
with
193 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<g:if test="${fc.userIsSiteAdmin()}"> | ||
<g:if test="${project.primarystate || project.primaryelect}"> | ||
<h4>Geographic range</h4> | ||
<div class="row"> | ||
<div class="col-sm-10"> | ||
<table class="table"> | ||
<tbody> | ||
<g:if test="${project.primarystate}"> | ||
<tr> | ||
<th>Primary State</th> | ||
<td>${project.primarystate}</td> | ||
</tr> | ||
<tr> | ||
<th>Other State(s)</th> | ||
<td>${project.otherstate}</td> | ||
</tr> | ||
</g:if> | ||
<g:if test="${project.primaryelect}"> | ||
<tr> | ||
<th>Primary Electorate</th> | ||
<td>${project.primaryelect}</td> | ||
</tr> | ||
<tr> | ||
<th>Other Electorate(s)</th> | ||
<td>${project.otherelect}</td> | ||
</tr> | ||
</g:if> | ||
</tbody> | ||
</table> | ||
</div> | ||
</div> | ||
</g:if> | ||
</g:if> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -196,6 +196,7 @@ | |
</div> | ||
</div> | ||
|
||
<g:render template="geographicInfo" model="${[project:project]}"/> | ||
</div> | ||
<hr/> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters