Initial commit
This commit is contained in:
6
app/plugins/tablefinder/views/index.html
Normal file
6
app/plugins/tablefinder/views/index.html
Normal file
@ -0,0 +1,6 @@
|
||||
<legend>Tables</legend>
|
||||
<div class="row">
|
||||
<div class="col-xlg-12 col-lg-12 col-md-12 col-sm-12 col-xs-12">
|
||||
{tableList}
|
||||
</div>
|
||||
</div>
|
0
app/plugins/tablefinder/views/players/list.html
Normal file
0
app/plugins/tablefinder/views/players/list.html
Normal file
93
app/plugins/tablefinder/views/tables/create.html
Normal file
93
app/plugins/tablefinder/views/tables/create.html
Normal file
@ -0,0 +1,93 @@
|
||||
<form action="" method="post" class="form-horizontal" enctype="multipart/form-data">
|
||||
<legend>Start a Table</legend>
|
||||
<div class="form-group">
|
||||
<label for="title" class="col-lg-3 control-label">Title</label>
|
||||
<div class="col-lg-3">
|
||||
<input type="text" class="form-check-input" name="title" id="title">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="blogPost" class="col-lg-3 control-label">Post</label>
|
||||
<div class="col-lg-6">
|
||||
<textarea class="form-control" name="blogPost" maxlength="2000" rows="10" cols="50" id="blogPost"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="col-lg-6 col-lg-offset-3">
|
||||
<button name="submit" value="publish" type="submit" class="btn btn-lg btn-primary">Publish</button>
|
||||
<button name="submit" value="saveDraft" type="submit" class="btn btn-lg btn-primary">Save as Draft</button>
|
||||
<button name="submit" value="preview" type="submit" class="btn btn-lg btn-primary">Preview</button>
|
||||
</div>
|
||||
</div>
|
||||
<input type="hidden" name="token" value="{TOKEN}">
|
||||
</form>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[ 'name', 'int', '10' ],
|
||||
[ 'description', 'int', '10' ],
|
||||
[ 'rules', 'int', '10' ],
|
||||
[ 'gmID', 'int', '10' ],
|
||||
[ 'createdAt', 'int', '10' ],
|
||||
[ 'createdBy', 'int', '10' ],
|
||||
[ 'calendarID', 'int', '10' ],
|
||||
[ 'preferredSessionFrequency', 'int', '10' ],
|
||||
// weekly
|
||||
// bi-weekly
|
||||
// monthly
|
||||
// undefined
|
||||
[ 'preferredSessionLength', 'int', '10' ],
|
||||
[ 'minimumSessionLength', 'int', '10' ],
|
||||
[ 'maximumSessionLength', 'int', '10' ],
|
||||
[ 'gamePlatform', 'int', '10' ],
|
||||
[ 'gameVersion', 'int', '10' ],
|
||||
[ 'playType', 'int', '10' ],
|
||||
// in-person
|
||||
// online
|
||||
[ 'location', 'int', '10' ],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<form action="" method="post" class="form-horizontal">
|
||||
<legend>New Route</legend>
|
||||
<fieldset>
|
||||
<div class="form-group">
|
||||
<label for="nickname" class="col-lg-6 control-label">Nickname:</label>
|
||||
<div class="col-lg-2">
|
||||
<input class="form-control" type="text" name="nickname" id="nickname">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="original_url" class="col-lg-6 control-label">Original URL:</label>
|
||||
<div class="col-lg-2">
|
||||
<input class="form-control" type="text" name="original_url" id="original_url">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="forwarded_url" class="col-lg-6 control-label">Forward URL:</label>
|
||||
<div class="col-lg-2">
|
||||
<input class="form-control" type="text" name="forwarded_url" id="forwarded_url">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="redirect_type" class="col-lg-6 control-label">Redirect Type:</label>
|
||||
<div class="col-lg-2">
|
||||
<select name="redirect_type" id="redirect_type" class="">
|
||||
<option value='internal' selected>Internal</option>
|
||||
<option value='external'>External</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
<input type="hidden" name="token" value="{TOKEN}">
|
||||
<button name="submit" value="submit" type="submit" class="btn btn-lg btn-primary center-block">Create</button><br>
|
||||
</form>
|
||||
|
0
app/plugins/tablefinder/views/tables/list.html
Normal file
0
app/plugins/tablefinder/views/tables/list.html
Normal file
Reference in New Issue
Block a user