-
Notifications
You must be signed in to change notification settings - Fork 34
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 #175 from CodeForPhilly/development
Release: laddr v2.3.8
- Loading branch information
Showing
9 changed files
with
106 additions
and
22 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,7 @@ | |
<div class="form-group"> | ||
<label class="control-label" for="Email">{_ "Email"}</label> | ||
<input type="email" class="form-control" id="Email" name="Email" value="{refill field=Email}" placeholder="{_ '[email protected]'}" aria-describedby="email-help-block"> | ||
<p id="email-help-block" class="help-block">Email address <strong>will</strong> be visible to other signed-in memebers.</p> | ||
<p id="email-help-block" class="help-block">Email address <strong>will</strong> be visible to other signed-in members.</p> | ||
</div> | ||
|
||
<div class="form-group"> | ||
|
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,28 @@ | ||
{template pagingLinks total pageSize=12 showAll=false} | ||
<nav aria-label="Page navigation"> | ||
<ul class="pagination"> | ||
{if $total > $pageSize} | ||
{$previousOffset = tif($.get.offset && $.get.offset > $pageSize ? $.get.offset - $pageSize : 0)} | ||
{$nextOffset = tif($.get.offset ? $.get.offset + $pageSize : $pageSize)} | ||
<li class="{if $.get.offset == 0}disabled{/if}"> | ||
<a href="?{refill_query limit=$pageSize offset=$previousOffset}" aria-label="Previous"> | ||
<span aria-hidden="true">«</span> | ||
</a> | ||
</li> | ||
|
||
{foreach item=page from=range(1,ceil($total/$pageSize))} | ||
{math "($page-1)*$pageSize" assign=offset} | ||
<li class="{if $.get.offset == $offset}active{/if}"><a href="?{refill_query limit=$pageSize offset=$offset}">{$page}</a></li> | ||
{/foreach} | ||
|
||
{if $.get.offset < $total - $pageSize} | ||
<li> | ||
<a href="?{refill_query limit=$pageSize offset=$nextOffset}" aria-label="Next"> | ||
<span aria-hidden="true">»</span> | ||
</a> | ||
</li> | ||
{/if} | ||
{/if} | ||
</ul> | ||
</nav> | ||
{/template} |
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
3 changes: 3 additions & 0 deletions
3
php-config/Emergence/People/PeopleRequestHandler.config.d/paging.php
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,3 @@ | ||
<?php | ||
|
||
\Emergence\People\PeopleRequestHandler::$browseLimitDefault = 50; |
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,16 @@ | ||
<?php | ||
|
||
Git::$repositories['emergence-github'] = [ | ||
'remote' => 'https://github.com/JarvusInnovations/emergence-github.git', | ||
'originBranch' => 'master', | ||
'workingBranch' => 'master', | ||
'trees' => [ | ||
'html-templates/connectors/github', | ||
'php-classes/Emergence/GitHub', | ||
'php-config/Emergence/GitHub', | ||
'php-config/Emergence/People/User.config.d/github-token.php', | ||
'php-config/Git.config.d/emergence-github.php', | ||
'php-migrations/Emergence/GitHub', | ||
'site-root/connectors/github.php' | ||
] | ||
]; |
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