Added a lot of functionality; Fixed a large number of bugs; Removed Bootstrap from the mix and replaced it with SimpleGrid and some choice bits from the bootstrap system; Pricing, Sales, and Product management all now function at basic levels.

This commit is contained in:
Wynne Crisman
2017-01-17 22:31:43 -08:00
parent b757595cd6
commit 55337521f6
49 changed files with 16017 additions and 1547 deletions

View File

@@ -4,18 +4,18 @@
<div class="insert">
{{>UserInsert}}
</div>
<div class="grid">
<div class="tableContainer">
<table class="dataTable table table-striped table-hover">
<thead>
<tr class="headers">
<th>Username</th>
<th>Email</th>
<th>Roles</th>
<th>Actions</th>
<th class="username">Username</th>
<th class="email">Email</th>
<th class="roles">Roles</th>
<th class="actions">Actions</th>
</tr>
<tr class="footers">
<th>{{>UserSearch columnName='username' maxWidth='40' minWidth='30'}}</th>
<th>{{>UserSearch columnName='email' collectionQueryColumnName='name' collection='Items' collectionResultColumnName='_id' maxWidth='150' minWidth='50'}}</th>
<th>{{>UserSearch columnName='username'}}</th>
<th>{{>UserSearch columnName='email' collectionQueryColumnName='name' collection='Items' collectionResultColumnName='_id'}}</th>
<th></th>
<th></th>
</tr>
@@ -54,15 +54,15 @@
<template name="UserSearch">
<div class="">
<input type="text" class="searchInput" placeholder="Filter..." value="{{searchValue}}" style="max-width: {{maxWidth}}px; min-width: {{minWidth}}px;"/>
<input type="text" class="searchInput" placeholder="Filter..." value="{{searchValue}}" style="width: 90%"/>
</div>
</template>
<template name="UserInsert">
<form name="insert" autocomplete="off">
<div class="row">
<div class="col-md-3 col-sm-0"></div>
<div class="col-md-6 col-sm-12">
<div class="grid">
<div class="col-3-12"></div>
<div class="col-6-12">
<div class="formGroupHeading">New User</div>
<div class="form-group">
<label class='control-label'>User Name</label>
@@ -84,7 +84,7 @@
<input type="submit" class="btn btn-success" value="Create">
</div>
</div>
<div class="col-md-3 col-sm-0"></div>
<div class="col-3-12"></div>
</div>
</form>
</template>