tellform/public/modules/forms/views/admin-form.client.view.html

146 lines
5.2 KiB
HTML
Raw Normal View History

2015-08-18 21:44:36 +00:00
<section data-ng-controller="AdminFormController" data-ng-init="findOne()" class="container admin-form">
<!-- Modal Delete Dialog Template -->
<script type="text/ng-template" id="myModalContent.html">
<div class="modal-header">
2015-08-06 05:52:59 +00:00
<h2 class="modal-title hidden-md hidden-lg">Are you ABSOLUTELY sure?</h2>
<h3 class="modal-title hidden-xs hidden-sm">Are you ABSOLUTELY sure?</h3>
</div>
<div class="modal-body">
<div class="modal-body-alert">
Unexpected bad things will happen if you dont read this!
2015-08-06 05:52:59 +00:00
</div>
<p class="hidden-xs hidden-sm">
This action <strong>CANNOT</strong> be undone.This will permanently delete the <strong>{{myform.title}}</strong> form, form submissions and remove all associated pdfs.
</p>
2015-08-04 21:06:16 +00:00
<p>Please type in the name of the form to confirm.</p>
</div>
<div class="modal-footer">
2015-08-04 21:06:16 +00:00
<p>
<input type="text" data-ng-model="deleteConfirm" class="input-block" autofocus required aria-label="Type in the name of the form to confirm that you want to delete this form.">
</p>
<button type="submit" ng-click="remove()" class="btn btn-block btn-danger" ng-disabled="myform.title != deleteConfirm">
I understand the consequences, delete this form
</button>
</div>
</script>
2015-07-02 02:49:35 +00:00
<div class="page-header row" style="padding-bottom: 0px;">
2015-08-06 05:52:59 +00:00
<div class="col-xs-10 col-sm-8">
<h1 class="hidden-sm hidden-xs" data-ng-bind="myform.title" style="margin-bottom: 0px;"></h1>
<h2 class="hidden-md hidden-lg" data-ng-bind="myform.title" style="margin-bottom: 0px;"></h2>
2015-07-02 02:49:35 +00:00
</div>
2015-08-06 05:52:59 +00:00
<div class="col-xs-1 col-sm-2">
<small class="pull-right">
<button class="btn btn-danger" ng-click="openDeleteModal()">
<i class="fa fa-trash-o"></i>
<span class="hidden-xs">Delete</span>
<span class="hidden-xs hidden-sm">Form</span>
</button>
2015-07-07 01:21:43 +00:00
</small>
</div>
2015-08-06 05:52:59 +00:00
<div class="col-xs-1 col-sm-2">
2015-08-04 21:06:16 +00:00
<small class="pull-right">
2015-08-06 05:52:59 +00:00
<a class="btn btn-default view-form-btn" href="/#!/forms/{{myform._id}}">
<span class="hidden-xs hidden-sm">
View
<span ng-show="myform.isLive">
Live
</span>
<span ng-hide="myform.isLive">Preview</span> Form
</span>
<span class="hidden-xs hidden-md hidden-lg">
View
<span ng-if="myform.isLive">Live</span>
<span ng-if="!myform.isLive">Preview</span>
</span>
<i class="status-light status-light-on fa fa-dot-circle-o" ng-if="myform.isLive"></i>
<i class="status-light status-light-off fa fa-dot-circle-o" ng-if="!myform.isLive"></i>
2015-07-02 02:49:35 +00:00
</a>
</small>
</div>
2015-06-29 22:51:29 +00:00
</div>
2015-07-02 02:49:35 +00:00
2015-08-18 21:44:36 +00:00
<div class="row" cg-busy="{promise:updatePromise,templateUrl:'modules/forms/views/directiveViews/cgBusy/update-form-message-TypeB.html',message:'Updating form...',backdrop:false}">
2015-07-03 23:47:14 +00:00
<tabset class="col-xs-12">
<tab>
<tab-heading>
Edit Form Fields
</tab-heading>
2015-08-18 21:44:36 +00:00
<edit-form-directive myform="myform">
</edit-form-directive>
2015-07-03 23:47:14 +00:00
</tab>
2015-07-04 03:25:25 +00:00
<tab disabled="true">
<tab-heading >
2015-07-03 23:47:14 +00:00
Edit Design
</tab-heading>
</tab>
<tab>
<tab-heading>
Configure
</tab-heading>
2015-07-28 22:29:07 +00:00
<configure-form-directive myform="myform" user="user">
</configure-form-directive>
2015-07-03 23:47:14 +00:00
</tab>
2015-08-18 21:44:36 +00:00
<tab>
2015-07-03 23:47:14 +00:00
<tab-heading>
View Submissions
</tab-heading>
2015-08-18 21:44:36 +00:00
<submissions-form-directive myform="myform" user="user">
</submissions-form-directive>
</tab>
</tabset>
<!--
<div class="cg-busy cg-busy-backdrop cg-busy-backdrop-animation ng-show ng-scope"></div> -->
2015-08-18 21:44:36 +00:00
<!--
<div class="cg-busy cg-busy-animation cg-busy-default-wrapper">
<div class="cg-busy-default-sign">
<div class="cg-busy-default-spinner">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
<div class="bar4"></div>
<div class="bar5"></div>
<div class="bar6"></div>
<div class="bar7"></div>
<div class="bar8"></div>
<div class="bar9"></div>
<div class="bar10"></div>
<div class="bar11"></div>
<div class="bar12"></div>
</div>
<div class="cg-busy-default-text">Updating form...</div>
</div>
</div> -->
2015-08-04 21:06:16 +00:00
2015-08-18 21:44:36 +00:00
<!-- <div class="cg-busy cg-busy-animation cg-busy-default-wrapper">
<div style="position: absolute; top: 0px; right: 0px;">
<div class="cg-busy-default-spinner">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
<div class="bar4"></div>
<div class="bar5"></div>
<div class="bar6"></div>
<div class="bar7"></div>
<div class="bar8"></div>
<div class="bar9"></div>
<div class="bar10"></div>
<div class="bar11"></div>
<div class="bar12"></div>
2015-07-03 23:47:14 +00:00
</div>
2015-08-18 21:44:36 +00:00
<div class="cg-busy-default-text" style="">Updating form...</div>
</div>
</div> -->
<!-- <div class="cg-busy cg-busy-backdrop cg-busy-backdrop-animation ng-show ng-scope"></div>
2015-08-18 21:44:36 +00:00
<div class="cg-busy cg-busy-animation">
<div style="position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px;">
<div style="text-align: center; font-size: 20px;position: fixed; bottom: 0; left: 45px; background-color: gray; color: white; padding: 5px 15px 5px 10px;">Updating Form...</div>
</div>
</div> -->
2015-08-18 21:44:36 +00:00
2015-07-03 23:47:14 +00:00
</div>
2015-06-29 22:51:29 +00:00
</section>