-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
6 changed files
with
27 additions
and
19 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
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 |
---|---|---|
|
@@ -63,6 +63,7 @@ | |
</template> | ||
|
||
<template name="tsAdminPayBonus"> | ||
<div class="modal-body"> | ||
<form class="form-horizontal"> | ||
<div class="form-group"> | ||
<label class="col-sm-3 control-label">WorkerId</label> | ||
|
@@ -90,10 +91,11 @@ | |
</div> | ||
<button class="btn btn-primary" type="submit">Pay Bonus</button> | ||
</form> | ||
</div> | ||
</template> | ||
|
||
<template name="tsAdminEmailWorker"> | ||
<div class="clear"></div> | ||
<div class="modal-body"> | ||
This comment has been minimized.
Sorry, something went wrong.
mizzao
Author
Member
|
||
<form class="form-horizontal"> | ||
<div class="form-group"> | ||
<label class="col-sm-3 control-label">WorkerId</label> | ||
|
@@ -104,17 +106,18 @@ | |
<div class="form-group"> | ||
<label class="col-sm-3 control-label">Subject</label> | ||
<div class="col-sm-9"> | ||
<textarea class="form-control" name="subject" rows="1" required></textarea> | ||
<input class="form-control" type="text" name="subject" required> | ||
</div> | ||
</div> | ||
<div class="form-group"> | ||
<div class="form-group"> | ||
<label class="col-sm-3 control-label">Message</label> | ||
<div class="col-sm-9"> | ||
<textarea class="form-control" name="message" rows="4" required></textarea> | ||
<textarea class="form-control" name="message" rows="10" required></textarea> | ||
</div> | ||
</div> | ||
<button class="btn btn-primary" type="submit">Send Message</button> | ||
</form> | ||
</div> | ||
</template> | ||
|
||
<!-- Template for displaying a worker in a dropdown list --> | ||
|
@@ -157,6 +160,11 @@ | |
{{/if}}</dd> | ||
<dt>State:</dt> | ||
<dd>{{turkserver.state}}</dd> | ||
<dt>Contact:</dt> | ||
<dd><button class="btn btn-xs btn-info ts-admin-email-worker"> | ||
<span class="glyphicon glyphicon-envelope"></span> | ||
</button> | ||
</dd> | ||
This comment has been minimized.
Sorry, something went wrong. |
||
</dl> | ||
|
||
{{#if status.online}} | ||
|
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 |
---|---|---|
|
@@ -11,5 +11,3 @@ html, body | |
.form-control.width-long | ||
width: 240px | ||
|
||
.clear | ||
clear: both |
@ldworkin Can you see if this refreshes the HIT data right after creation, so it's not blank?