Added a couple of useful services to rconservice
This commit is contained in:
+12
-13
@@ -1,22 +1,21 @@
|
||||
|
||||
<div ng-controller="ConsoleController" flex layout="column" id="ConsoleController">
|
||||
|
||||
<md-content flex id="vertical-container" class="Output"><div ng-repeat="line in Output" ng-class="line.Class">{{line.Message}}</div></md-content>
|
||||
|
||||
<form ng-submit="SubmitCommand()" class="md-inline-form">
|
||||
<md-toolbar class="Input">
|
||||
<div class="md-toolbar-tools">
|
||||
<form ng-submit="SubmitCommand()" class="md-inline-form">
|
||||
<md-toolbar class="Input">
|
||||
<div class="md-toolbar-tools">
|
||||
|
||||
<span flex>
|
||||
<input ng-model="Command" style="width: 100%">
|
||||
</span>
|
||||
<span flex>
|
||||
<input ng-model="Command" style="width: 100%">
|
||||
</span>
|
||||
|
||||
<md-button class="md-icon-button" aria-label="Settings" ng-click="SubmitCommand()">
|
||||
<md-icon md-menu-origin md-svg-icon="image/arrow-right-bold-hexagon-outline.svg"></md-icon>
|
||||
</md-button>
|
||||
<md-button class="md-icon-button" aria-label="Settings" ng-click="SubmitCommand()">
|
||||
<md-icon md-menu-origin md-svg-icon="image/arrow-right-bold-hexagon-outline.svg"></md-icon>
|
||||
</md-button>
|
||||
|
||||
</div>
|
||||
</md-toolbar>
|
||||
</form>
|
||||
</div>
|
||||
</md-toolbar>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
@@ -0,0 +1,9 @@
|
||||
|
||||
<div ng-controller="PlayerInfoController" flex layout="column" id="PlayerInfoController">
|
||||
|
||||
Info about player {{userid}}
|
||||
|
||||
<p>View <a href="#/player/{{userid}}/xp">XP info for this player</a></p>
|
||||
Show info about this player here
|
||||
|
||||
</div>
|
||||
@@ -0,0 +1,6 @@
|
||||
|
||||
<div ng-controller="PlayerXpController" flex layout="column" id="PlayerXpController">
|
||||
|
||||
Show info about this player xp here
|
||||
|
||||
</div>
|
||||
@@ -1,5 +1,4 @@
|
||||
|
||||
<div ng-controller="PlayersController" flex layout="column" id="PlayersController">
|
||||
<div ng-controller="PlayerListController" flex layout="column" id="PlayerListController">
|
||||
|
||||
<md-content flex id="vertical-container">
|
||||
<md-list>
|
||||
@@ -7,7 +6,7 @@
|
||||
<md-list-item class="md-3-line" layout="row" style="min-height: auto;">
|
||||
<div flex layout="row">
|
||||
<div flex class="md-list-item-text">
|
||||
<h3>{{line.DisplayName}}</h3>
|
||||
<h3><a href="/#/player/{{line.SteamID}}/">{{line.DisplayName}}</a></h3>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user