-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Innovations added - Locations added (With custom location support) - Principles added (With custom principle support)
- Loading branch information
1 parent
417608e
commit a19bfad
Showing
5 changed files
with
136 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<div class="row element"> | ||
<div class="col-xs-12"> | ||
<div class="row"> | ||
<div class="col-xs-12"> | ||
<big>Innovations</big><br /> | ||
<small>The settlement's innovations (including weapon masteries).</small> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-6"> | ||
<div class="row" ng-repeat="innovation in kdm.innovations | limitTo:11:0 track by $index"> | ||
<div class="col-xs-12"> | ||
<input type="text" class="underlined fullwidth left-align" ng-model="kdm.innovations[$index]"> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-6"> | ||
<div class="row" ng-repeat="innovation in kdm.innovations | limitTo:11:11 track by $index"> | ||
<div class="col-xs-12"> | ||
<input type="text" class="underlined fullwidth left-align" ng-model="kdm.innovations[$index+11]"> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
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,39 @@ | ||
<div class="row element"> | ||
<div class="col-xs-12"> | ||
<div class="row"> | ||
<div class="col-xs-12"> | ||
<big>Settlement Locations</big><br /> | ||
<small>Locations in your settlement.</small> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-6"> | ||
<div class="row" ng-repeat="location in kdm.locations | limitTo:9:0 track by $index"> | ||
<div class="col-xs-2"> | ||
<label> | ||
<input type="checkbox" ng-model="location.owned" class="mini"> | ||
<span></span> | ||
</label> | ||
</div> | ||
<div class="col-xs-10"> | ||
<input type="text" ng-readonly="location.disabled" class="underlined fullwidth left-align" ng-model="location.name"> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-6"> | ||
<div class="row" ng-repeat="location in kdm.locations | limitTo:9:9 track by $index"> | ||
<div class="col-xs-2"> | ||
<label> | ||
<input type="checkbox" ng-model="location.owned" class="mini"> | ||
<span></span> | ||
</label> | ||
</div> | ||
<div class="col-xs-10"> | ||
<input type="text" ng-readonly="location.disabled" class="underlined fullwidth left-align" ng-model="location.name"> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
</div> |
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,30 @@ | ||
<div class="row element"> | ||
<div class="col-xs-12"> | ||
<div class="row"> | ||
<div class="col-xs-12"> | ||
<big>Principles</big><br /> | ||
<small>The settlement's established principles.</small> | ||
</div> | ||
</div> | ||
<div class="row" ng-repeat="principle in kdm.principles track by $index"> | ||
<div class="col-xs-3"> | ||
<input type="text" ng-readonly="principle.disabled" class="underlined fullwidth left-align" ng-model="principle.name"> | ||
</div> | ||
<div class="col-xs-1"> | ||
<label class="radio-inline"><input type="radio" name="{{principle.name}}" value="{{principle.left}}" ng-model="principle.choice" class="radio-box"><span></span></label> | ||
</div> | ||
<div class="col-xs-3"> | ||
<input type="text" ng-readonly="principle.disabled" class="underlined left-align" ng-model="principle.left"> | ||
</div> | ||
<div class="col-xs-1"> | ||
<small>or</small> | ||
</div> | ||
<div class="col-xs-1"> | ||
<label class="radio-inline"><input type="radio" name="{{principle.name}}" value="{{principle.right}}" ng-model="principle.choice" class="radio-box"><span></span></label> | ||
</div> | ||
<div class="col-xs-3"> | ||
<input type="text" ng-readonly="principle.disabled" class="underlined left-align" ng-model="principle.right"> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |