Huge Bootstrap 4 Classes Fix (#2807)
[openemr.git] / portal / patient / templates / PatientListView.tpl.php
blob9304557acee3e59a8e095a9479857e3a912fc00e
1 <?php
2 /**
3 * import_template.php
5 * @package OpenEMR
6 * @link https://www.open-emr.org
7 * @author Jerry Padgett <sjpadgett@gmail.com>
8 * @author Terry Hill <teryhill@yahoo.com>
9 * @copyright Copyright (c) 2016-2017 Jerry Padgett <sjpadgett@gmail.com>
10 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
13 //require_once ("./../verify_session.php");
14 require_once("../../library/options.inc.php");
15 $this->assign('title', xlt("Patient Portal") . " | " . xlt("Patient Data"));
16 $this->assign('nav', 'patientdata');
18 * row keys are js underscore camelcase and follow the underscores varables used in this template
19 * $row['city'] or $row['postalCode'] e.t.c.. The keys do not match table columns ie postalCode here is postal_code in table.
20 * */
21 $row = array();
22 if ($this->trow) {
23 $row = $this->trow;
26 echo "<script>var register='" . attr($this->register) . "';var recid='" . attr($this->recid) . "';var webRoot='" . $GLOBALS['web_root'] . "';var cpid='" . attr($this->cpid) . "';var cuser='" . attr($this->cuser) . "';</script>";
27 $_SESSION['whereto'] = 'profilepanel';
29 $this->display('_modalFormHeader.tpl.php');
32 <script type="text/javascript">
34 // bring in the datepicker and datetimepicker localization and setting elements
35 <?php require($GLOBALS['srcdir'] . '/js/xl/jquery-datetimepicker-2-5-4-alternate.js.php'); ?>
37 $LAB.script("scripts/app/patientdata.js?v=<?php echo $GLOBALS['v_js_includes']; ?>").wait(function(){
38 $(function(){
39 page.init();
40 });
41 // hack for browsers or slow sessions which may respond inconsistently with document.ready-second chance at init
42 setTimeout(function(){
43 if (!page.isInitialized) page.init();
44 },1000);
45 });
46 </script>
47 <?php if (attr($this->register)) {?>
48 <style>
49 .form-group.inline.dynhide {
50 display: none;
53 body {
54 padding-top: 0px;
55 padding-bottom: 5px;
56 background: #fff !important;
58 </style>
59 <script>
60 // Fixes iFrame in Patient Registratiion
61 setInterval(function() {
62 window.top.postMessage(document.body.scrollHeight, "*");
63 }, 500);
64 </script>
65 <?php }?>
66 <body>
67 <div class="container-fluid">
68 <script type="text/template" id="patientCollectionTemplate"></script>
69 <!-- Could add/manage table list here -->
70 <script type="text/template" id="patientModelTemplate"> <!-- -->
72 <div id='profileHelp' class='well' style='display:none;width: 650px; margin: 0 auto;'>
73 <p>
74 <?php echo xlt('Any changes here will be reviewed by provider staff before commiting to chart. The following apply'); ?>:<br>
75 <?php echo xlt('Change any item available and when ready click Send for review. The changes will be flagged and staff notified to review changes before commiting them to chart. During the time period before changes are reviewed the Revised button will show Pending and profile data is still available for changes. When accessing profile in pending state all previous edits will appear in Blue and current chart values in Red. You may revert any edit to chart value by clicking that red item (or vica versa) but remember that when you click Send for Review then items that populate the field items are the ones that are sent. Revert Edits button changes everything back to chart values and you may make changes from there. So to recap: Items in BLUE are patient edits with items in RED being original values before any edits.'); ?>
76 </p>
77 <button class="btn btn-primary btn-sm" type="button" id='dismissHelp'><?php echo xlt('Dismiss'); ?></button>
78 </div>
79 <form class="form-inline" onsubmit="return false;">
80 <fieldset>
81 <!-- <div class="form-group inline" id="idInputContainer">
82 <label class="control-label" for="id">Id</label>
83 <div class="controls inline-inputs">
84 <span class="form-control uneditable-input" id="id"><%= _.escape(item.get('id') || '') %></span>
85 <span class="help-inline"></span>
86 </div>
87 </div> -->
88 <div class="form-group inline" id="provideridInputContainer">
89 <label class="control-label" for="providerid"><?php echo xlt('Select Primary Physician')?></label>
90 <div class="controls inline-inputs">
91 <select class="form-control" id="providerid" value="<%= _.escape(item.get('providerid') || '') %>"></select>
92 <span class="help-inline"></span>
93 </div>
94 </div>
95 <div class="form-group inline" id="titleInputContainer">
96 <label class="control-label" for="title"><?php echo xlt('Title')?></label><br>
97 <div class="controls inline-inputs">
98 <?php
99 # Generate drop down list for Title
100 echo generate_select_list('title', 'titles', $row['title'], xl('Title'), 'Unassigned', "form-control");
102 <span class="help-inline"></span>
103 </div>
104 </div>
106 <!-- <div class="form-group inline" id="financialInputContainer">
107 <label class="control-label" for="financial"><?php echo xlt('Financial')?></label>
108 <div class="controls inline-inputs">
109 <input type="text" class="form-control" id="financial" placeholder="Financial" value="<%= _.escape(item.get('financial') || '') %>">
110 <span class="help-inline"></span>
111 </div>
112 </div> -->
113 <div class="form-group inline" id="fnameInputContainer">
114 <label class="control-label" for="fname"><?php echo xlt('First{{Name}}')?></label>
115 <div class="controls inline-inputs">
116 <input type="text" class="form-control" id="fname" required placeholder="<?php echo xla('First Name'); ?>" value="<%= _.escape(item.get('fname') || '') %>">
117 <span class="help-inline"></span>
118 </div>
119 </div>
120 <div class="form-group inline" id="mnameInputContainer">
121 <label class="control-label" for="mname"><?php echo xlt('Middle{{Name}}')?></label>
122 <div class="controls inline-inputs">
123 <input type="text" class="form-control" id="mname" placeholder="<?php echo xla('Middle Name'); ?>" value="<%= _.escape(item.get('mname') || '') %>">
124 <span class="help-inline"></span>
125 </div>
126 </div>
127 <div class="form-group inline" id="lnameInputContainer">
128 <label class="control-label" for="lname"><?php echo xlt('Last{{Name}}')?></label>
129 <div class="controls inline-inputs">
130 <input type="text" class="form-control" id="lname" required placeholder="<?php echo xla('Last Name'); ?>" value="<%= _.escape(item.get('lname') || '') %>">
131 <span class="help-inline"></span>
132 </div>
133 </div>
134 <div class="form-group inline dynhide hide" id="pidInputContainer">
135 <label class="control-label" for="pid"><?php echo xlt('Pid')?></label>
136 <div class="controls inline-inputs">
137 <input type="text" class="form-control" id="pid" placeholder="<?php echo xla('Pid')?>" value="<%= _.escape(item.get('pid') || '') %>">
138 <span class="help-inline"></span>
139 </div>
140 </div>
141 <div class="form-group inline" id="pubpidInputContainer">
142 <label class="control-label" for="pubpid"><?php echo xlt('Public Patient Id')?></label>
143 <div class="controls inline-inputs">
144 <input type="text" class="form-control" id="pubpid" disabled value="<%= _.escape(item.get('pubpid') || '') %>">
145 <span class="help-inline"></span>
146 </div>
147 </div>
148 <div class="form-group inline" id="dobInputContainer">
149 <label class="control-label" for="dob"><?php echo xlt('Birth Date')?></label>
150 <div class="controls inline-inputs">
151 <div class="input-group" >
152 <input id="dob" type="text" required class="form-control jquery-date-picker" placeholder="<?php echo xla('I know but we need it!'); ?>" value="<%= item.get('dob') %>" />
153 </div>
154 <span class="help-inline"></span>
155 </div>
156 </div>
157 <div class="form-group inline" id="ssInputContainer">
158 <label class="control-label" for="ss"><?php echo xlt('SSN')?></label>
159 <div class="controls inline-inputs">
160 <input type="text" class="form-control" id="ss" title="###-##-####" placeholder="<?php echo xla('Social Security(Optional)'); ?>" value="<%= _.escape(item.get('ss') || '') %>">
161 <span class="help-inline"></span>
162 </div>
163 </div>
164 <div class="form-group inline" id="sexInputContainer">
165 <label class="control-label" for="sex"><?php echo xlt('Gender')?></label><br>
166 <div class="controls inline-inputs">
167 <?php
168 # Generate drop down list for Sex
169 echo generate_select_list('sex', 'sex', $row['sex'], xl('Sex'), 'Unassigned');
171 <span class="help-inline"></span>
172 </div>
173 </div>
174 <!--<div class="form-group inline" id="pharmacyIdInputContainer">
175 <label class="control-label" for="pharmacyId"><?php echo xlt('Pharmacy Id')?></label>
176 <div class="controls inline-inputs">
177 <input type="text" class="form-control" id="pharmacyId" placeholder="<?php echo xla('Pharmacy Id'); ?>" value="<%= _.escape(item.get('pharmacyId') || '') %>">
178 <span class="help-inline"></span>
179 </div>
180 </div>-->
181 <div class="form-group inline" id="statusInputContainer">
182 <label class="control-label" for="status"><?php echo xlt('Marital Status')?></label><br>
183 <div class="controls inline-inputs">
184 <?php
185 # Generate drop down list for Marital Status
186 echo generate_select_list('status', 'marital', $row['marital'], xl('Marital Status'), 'Unassigned', "form-control");
188 <span class="help-inline"></span>
189 </div>
190 </div>
191 <div class="form-group inline" id="streetInputContainer">
192 <label class="control-label" for="street"><?php echo xlt('Street')?></label>
193 <div class="controls inline-inputs">
194 <input type="text" class="form-control" id="street" required placeholder="<?php echo xla('Street'); ?>" value="<%= _.escape(item.get('street') || '') %>"/>
195 <span class="help-inline"></span>
196 </div>
197 </div>
198 <div class="form-group inline" id="cityInputContainer">
199 <label class="control-label" for="city"><?php echo xlt('City')?></label>
200 <div class="controls inline-inputs">
201 <input type="text" class="form-control" id="city" required placeholder="<?php echo xla('City'); ?>" value="<%= _.escape(item.get('city') || '') %>">
202 <span class="help-inline"></span>
203 </div>
204 </div>
205 <div class="form-group inline" id="stateInputContainer">
206 <label class="control-label" for="state"><?php echo xlt('State')?></label><br>
207 <div class="controls inline-inputs">
208 <?php
209 # Generate drop down list for State
210 echo generate_select_list('state', 'state', $row['state'], xl('State'), 'Unassigned', "form-control");
212 <span class="help-inline"></span>
213 </div>
214 </div>
215 <div class="form-group inline" id="postalCodeInputContainer">
216 <label class="control-label" for="postalCode"><?php echo xlt('Postal Code')?></label>
217 <div class="controls inline-inputs">
218 <input type="text" class="form-control" id="postalCode" placeholder="<?php echo xla('Postal Code'); ?>" value="<%= _.escape(item.get('postalCode') || '') %>">
219 <span class="help-inline"></span>
220 </div>
221 </div>
222 <div class="form-group inline" id="countyInputContainer">
223 <label class="control-label" for="county"><?php echo xlt('County')?></label>
224 <div class="controls inline-inputs">
225 <input type="text" class="form-control" id="county" placeholder="<?php echo xla('County'); ?>" value="<%= _.escape(item.get('county') || '') %>">
226 <span class="help-inline"></span>
227 </div>
228 </div>
229 <div class="form-group inline" id="countryCodeInputContainer">
230 <label class="control-label" for="countryCode"><?php echo xlt('Country Code')?></label>
231 <div class="controls inline-inputs">
232 <input type="text" class="form-control" id="countryCode" placeholder="<?php echo xla('Country Code'); ?>" value="<%= _.escape(item.get('countryCode') || '') %>">
233 <span class="help-inline"></span>
234 </div>
235 </div>
236 <div class="form-group inline" id="phoneHomeInputContainer">
237 <label class="control-label" for="phoneHome"><?php echo xlt('Home Phone')?></label>
238 <div class="controls inline-inputs">
239 <input type="text" class="form-control" id="phoneHome" placeholder="<?php echo xla('Phone Home'); ?>" value="<%= _.escape(item.get('phoneHome') || '') %>">
240 <span class="help-inline"></span>
241 </div>
242 </div>
243 <div class="form-group inline" id="phoneBizInputContainer">
244 <label class="control-label" for="phoneBiz"><?php echo xlt('Business Phone')?></label>
245 <div class="controls inline-inputs">
246 <input type="text" class="form-control" id="phoneBiz" placeholder="<?php echo xla('Phone Biz'); ?>" value="<%= _.escape(item.get('phoneBiz') || '') %>">
247 <span class="help-inline"></span>
248 </div>
249 </div>
250 <div class="form-group inline" id="phoneCellInputContainer">
251 <label class="control-label" for="phoneCell"><?php echo xlt('Cell Phone')?></label>
252 <div class="controls inline-inputs">
253 <input type="text" class="form-control" id="phoneCell" placeholder="<?php echo xla('Phone Cell'); ?>" value="<%= _.escape(item.get('phoneCell') || '') %>">
254 <span class="help-inline"></span>
255 </div>
256 </div>
257 <div class="form-group inline" id="phoneContactInputContainer">
258 <label class="control-label" for="phoneContact"><?php echo xlt('Contact or Notify Phone')?></label>
259 <div class="controls inline-inputs">
260 <input type="text" class="form-control" id="phoneContact" placeholder="<?php echo xla('Phone Contact'); ?>" value="<%= _.escape(item.get('phoneContact') || '') %>">
261 <span class="help-inline"></span>
262 </div>
263 </div>
264 <div class="form-group inline" id="contactRelationshipInputContainer">
265 <label class="control-label" for="contactRelationship"><?php echo xlt('Contact Relationship')?></label>
266 <div class="controls inline-inputs">
267 <input type="text" class="form-control" id="contactRelationship" placeholder="<?php echo xla('Contact Relationship'); ?>" value="<%= _.escape(item.get('contactRelationship') || '') %>">
268 <span class="help-inline"></span>
269 </div>
270 </div>
271 <div class="form-group inline" id="dateInputContainer">
272 <label class="control-label" for="date"><?php echo xlt('Date')?></label>
273 <div class="controls inline-inputs">
274 <div class="input-group">
275 <input disabled id="date" type="text" class="form-control jquery-date-time-picker" value="<%= item.get('date') %>" />
276 </div>
277 <span class="help-inline"></span>
278 </div>
279 </div><!-- -->
280 <div class="form-group inline dynhide" id="refProvideridInputContainer">
281 <label class="control-label" for="refProviderid"><?php echo xlt('Referral Provider')?></label>
282 <div class="controls inline-inputs">
283 <select disabled class="form-control" id="refProviderid" value="<%= _.escape(item.get('refProviderid') || '') %>"></select>
284 <span class="help-inline"></span>
285 </div>
286 </div>
287 <div class="form-group inline" id="emailInputContainer">
288 <label class="control-label" for="email"><?php echo xlt('Email')?></label>
289 <div class="controls inline-inputs">
290 <input type="email" class="form-control" id="email" required placeholder="<?php echo xla('Email'); ?>" value="<%= _.escape(item.get('email') || '') %>">
291 <span class="help-inline"></span>
292 </div>
293 </div>
294 <div class="form-group inline dynhide" id="emailDirectInputContainer">
295 <label class="control-label" for="emailDirect"><?php echo xlt('Email Direct')?></label>
296 <div class="controls inline-inputs">
297 <input type="text" class="form-control" id="emailDirect" placeholder="<?php echo xla('Direct Email'); ?>" value="<%= _.escape(item.get('emailDirect') || '') %>">
298 <span class="help-inline"></span>
299 </div>
300 </div>
301 <div class="form-group inline" id="languageInputContainer">
302 <label class="control-label" for="language"><?php echo xlt('Preferred Language')?></label>
303 <div class="controls inline-inputs">
304 <input type="text" class="form-control" id="language" placeholder="<?php echo xla('Language'); ?>" value="<%= _.escape(item.get('language') || '') %>">
305 <span class="help-inline"></span>
306 </div>
307 </div>
308 <div class="form-group inline" id="raceInputContainer">
309 <label class="control-label" for="race"><?php echo xlt('Race')?></label><br>
310 <div class="controls inline-inputs">
311 <?php
312 # Generate drop down list for Race
313 echo generate_select_list('race', 'race', $row[ 'race'], xl('Race'), 'Unassigned', "form-control");
315 <span class="help-inline"></span>
316 </div>
317 </div>
318 <div class="form-group inline" id="ethnicityInputContainer">
319 <label class="control-label" for="ethnicity"><?php echo xlt('Ethnicity')?></label><br>
320 <div class="controls inline-inputs">
321 <?php
322 # Generate drop down list for Ethnicity
323 echo generate_select_list('ethnicity', 'ethnicity', $row['ethnicity'], xl('Ethnicity'), 'Unassigned', "form-control");
325 <span class="help-inline"></span>
326 </div>
327 </div>
328 <div class="form-group inline" id="religionInputContainer">
329 <label class="control-label" for="religion"><?php echo xlt('Religion')?></label><br>
330 <div class="controls inline-inputs">
331 <?php
332 # Generate drop down list for Religion
333 echo generate_select_list('religion', 'religious_affiliation', $row['religion'], xl('Religion'), 'Unassigned', "form-control");
335 <span class="help-inline"></span>
336 </div>
337 </div>
338 <div class="form-group inline dynhide" id="familySizeInputContainer">
339 <label class="control-label" for="familySize"><?php echo xlt('Family Size')?></label>
340 <div class="controls inline-inputs">
341 <input type="text" class="form-control" id="familySize" placeholder="<?php echo xla('Family Size'); ?>" value="<%= _.escape(item.get('familySize') || '') %>">
342 <span class="help-inline"></span>
343 </div>
344 </div>
345 <div class="form-group inline" id="referralSourceInputContainer">
346 <label class="control-label" for="referralSource"><?php echo xlt('How Referred')?></label><br>
347 <div class="controls inline-inputs">
348 <?php
349 # Generate drop down list for Referral Source
350 echo generate_select_list('referralSource', 'refsource', $row['referralSource'], xl('Referral Source'), 'Unassigned', "form-control");
352 <span class="help-inline"></span>
353 </div>
354 </div>
355 <div class="form-group inline dynhide" id="regdateInputContainer">
356 <label class="control-label" for="regdate"><?php echo xlt('Registration Date')?></label>
357 <div class="controls inline-inputs">
358 <div class="input-group">
359 <input disabled id="regdate" type="text" class="form-control jquery-date-picker" value="<%= item.get('regdate') %>" />
360 </div>
361 <span class="help-inline"></span>
362 </div>
363 </div>
364 <div class="form-group inline" id="mothersnameInputContainer">
365 <label class="control-label" for="mothersname"><?php echo xlt('Mothers Name')?></label>
366 <div class="controls inline-inputs">
367 <input type="text" class="form-control" id="mothersname" placeholder="<?php echo xla('Mothers Name'); ?>" value="<%= _.escape(item.get('mothersname') || '') %>">
368 <span class="help-inline"></span>
369 </div>
370 </div>
371 <div class="form-group inline dynhide" id="guardiansnameInputContainer">
372 <label class="control-label" for="guardiansname"><?php echo xlt('Guardians Name')?></label>
373 <div class="controls inline-inputs">
374 <input type="text" class="form-control" id="guardiansname" placeholder="<?php echo xla('Guardians Name'); ?>" value="<%= _.escape(item.get('guardiansname') || '') %>">
375 <span class="help-inline"></span>
376 </div>
377 </div>
378 <div class="form-group inline" id="hipaaMailInputContainer">
379 <label class="control-label" for="hipaaMail"><?php echo xlt('Allow Postal Mail')?></label>
380 <div class="controls inline-inputs">
381 <label class="btn btn-secondary btn-gradient btn-sm"><input id="hipaaMail0" name="hipaaMail" type="radio" value="NO"<% if (item.get('hipaaMail')=="NO") { %> checked="checked"<% } %>><?php echo xlt('NO'); ?></label>
382 <label class="btn btn-secondary btn-gradient btn-sm"><input id="hipaaMail1" name="hipaaMail" type="radio" value="YES"<% if (item.get('hipaaMail')=="YES") { %> checked="checked"<% } %>><?php echo xlt('YES'); ?></label>
383 <label class="btn btn-secondary btn-gradient btn-sm"><input id="hipaaMail2" name="hipaaMail" type="radio" value=""<% if (item.get('hipaaMail')=="") { %> checked="checked"<% } %>><?php echo xlt('Unassigned'); ?></label>
384 <span class="help-inline"></span>
385 </div>
386 </div>
387 <div class="form-group inline" id="hipaaVoiceInputContainer">
388 <label class="control-label" for="hipaaVoice"><?php echo xlt('Allow Voice Call')?></label>
389 <div class="controls inline-inputs">
390 <label class="btn btn-secondary btn-gradient btn-sm"><input id="hipaaVoice0" name="hipaaVoice" type="radio" value="NO"<% if (item.get('hipaaVoice')=="NO") { %> checked="checked"<% } %>><?php echo xlt('NO'); ?></label>
391 <label class="btn btn-secondary btn-gradient btn-sm"><input id="hipaaVoice1" name="hipaaVoice" type="radio" value="YES"<% if (item.get('hipaaVoice')=="YES") { %> checked="checked"<% } %>><?php echo xlt('YES'); ?></label>
392 <label class="btn btn-secondary btn-gradient btn-sm"><input id="hipaaVoice2" name="hipaaVoice" type="radio" value=""<% if (item.get('hipaaVoice')=="") { %> checked="checked"<% } %>><?php echo xlt('Unassigned'); ?></label>
393 <span class="help-inline"></span>
394 </div>
395 </div>
396 <div class="form-group inline" id="hipaaNoticeInputContainer">
397 <label class="control-label" for="hipaaNotice"><?php echo xlt('Allow Notice')?></label>
398 <div class="controls inline-inputs">
399 <label class="btn btn-secondary btn-gradient btn-sm"><input id="hipaaNotice0" name="hipaaNotice" type="radio" value="NO"<% if (item.get('hipaaNotice')=="NO") { %> checked="checked"<% } %>><?php echo xlt('NO'); ?></label>
400 <label class="btn btn-secondary btn-gradient btn-sm"><input id="hipaaNotice1" name="hipaaNotice" type="radio" value="YES"<% if (item.get('hipaaNotice')=="YES") { %> checked="checked"<% } %>><?php echo xlt('YES'); ?></label>
401 <label class="btn btn-secondary btn-gradient btn-sm"><input id="hipaaNotice2" name="hipaaNotice" type="radio" value=""<% if (item.get('hipaaNotice')=="") { %> checked="checked"<% } %>><?php echo xlt('Unassigned'); ?></label>
402 <span class="help-inline"></span>
403 </div>
404 </div>
405 <div class="form-group inline dynhide" id="hipaaMessageInputContainer">
406 <label class="control-label" for="hipaaMessage"><?php echo xlt('Hipaa Message')?></label>
407 <div class="controls inline-inputs">
408 <input type="text" class="form-control" id="hipaaMessage" placeholder="<?php echo xla('Hipaa Message'); ?>" value="<%= _.escape(item.get('hipaaMessage') || '') %>">
409 <span class="help-inline"></span>
410 </div>
411 </div>
412 <div class="form-group inline" id="hipaaAllowsmsInputContainer">
413 <label class="control-label" for="hipaaAllowsms"><?php echo xlt('Allow SMS')?></label>
414 <div class="controls inline-inputs">
415 <label class="btn btn-secondary btn-gradient btn-sm"><input id="hipaaAllowsms0" name="hipaaAllowsms" type="radio" value="NO"<% if (item.get('hipaaAllowsms')=="NO") { %> checked="checked"<% } %>><?php echo xlt('NO'); ?></label>
416 <label class="btn btn-secondary btn-gradient btn-sm"><input id="hipaaAllowsms1" name="hipaaAllowsms" type="radio" value="YES"<% if (item.get('hipaaAllowsms')=="YES") { %> checked="checked"<% } %>><?php echo xlt('YES'); ?></label>
417 <label class="btn btn-secondary btn-gradient btn-sm"><input id="hipaaAllowsms2" name="hipaaAllowsms" type="radio" value=""<% if (item.get('hipaaAllowsms')=="") { %> checked="checked"<% } %>><?php echo xlt('Unassigned'); ?></label>
418 <span class="help-inline"></span>
419 </div>
420 </div>
421 <div class="form-group inline" id="hipaaAllowemailInputContainer">
422 <label class="control-label" for="hipaaAllowemail"><?php echo xlt('Allow Email')?></label>
423 <div class="controls inline-inputs">
424 <label class="btn btn-secondary btn-gradient btn-sm"><input id="hipaaAllowemail0" name="hipaaAllowemail" type="radio" value="NO"<% if (item.get('hipaaAllowemail')=="NO") { %> checked="checked"<% } %>><?php echo xlt('NO'); ?></label>
425 <label class="btn btn-secondary btn-gradient btn-sm"><input id="hipaaAllowemail1" name="hipaaAllowemail" type="radio" value="YES"<% if (item.get('hipaaAllowemail')=="YES") { %> checked="checked"<% } %>><?php echo xlt('YES'); ?></label>
426 <label class="btn btn-secondary btn-gradient btn-sm"><input id="hipaaAllowemail2" name="hipaaAllowemail" type="radio" value=""<% if (item.get('hipaaAllowemail')=="") { %> checked="checked"<% } %>><?php echo xlt('Unassigned'); ?></label>
427 <span class="help-inline"></span>
428 </div>
429 </div>
430 <div class="form-group inline" id="allowImmRegUseInputContainer">
431 <label class="control-label" for="allowImmRegUse"><?php echo xlt('Allow Immunization Registry Use')?></label>
432 <div class="controls inline-inputs">
433 <label class="btn btn-secondary btn-gradient btn-sm"><input id="allowImmRegUse0" name="allowImmRegUse" type="radio" value="NO"<% if (item.get('allowImmRegUse')=="NO") { %> checked="checked"<% } %>><?php echo xlt('NO'); ?></label>
434 <label class="btn btn-secondary btn-gradient btn-sm"><input id="allowImmRegUse1" name="allowImmRegUse" type="radio" value="YES"<% if (item.get('allowImmRegUse')=="YES") { %> checked="checked"<% } %>><?php echo xlt('YES'); ?></label>
435 <label class="btn btn-secondary btn-gradient btn-sm"><input id="allowImmRegUse2" name="allowImmRegUse" type="radio" value=""<% if (item.get('allowImmRegUse')=="") { %> checked="checked"<% } %>><?php echo xlt('Unassigned'); ?></label>
436 <span class="help-inline"></span>
437 </div>
438 </div>
439 <div class="form-group inline" id="allowImmInfoShareInputContainer">
440 <label class="control-label" for="allowImmInfoShare"><?php echo xlt('Allow Immunization Info Share')?></label>
441 <div class="controls inline-inputs">
442 <label class="btn btn-secondary btn-gradient btn-sm"><input id="allowImmInfoShare0" name="allowImmInfoShare" type="radio" value="NO"<% if (item.get('allowImmInfoShare')=="NO") { %> checked="checked"<% } %>><?php echo xlt('NO'); ?></label>
443 <label class="btn btn-secondary btn-gradient btn-sm"><input id="allowImmInfoShare1" name="allowImmInfoShare" type="radio" value="YES"<% if (item.get('allowImmInfoShare')=="YES") { %> checked="checked"<% } %>><?php echo xlt('YES'); ?></label>
444 <label class="btn btn-secondary btn-gradient btn-sm"><input id="allowImmInfoShare2" name="allowImmInfoShare" type="radio" value=""<% if (item.get('allowImmInfoShare')=="") { %> checked="checked"<% } %>><?php echo xlt('Unassigned'); ?></label>
445 <span class="help-inline"></span>
446 </div>
447 </div>
448 <div class="form-group inline" id="allowHealthInfoExInputContainer">
449 <label class="control-label" for="allowHealthInfoEx"><?php echo xlt('Allow Health Info Exchange')?></label>
450 <div class="controls inline-inputs">
451 <label class="btn btn-secondary btn-gradient btn-sm"><input id="allowHealthInfoEx0" name="allowHealthInfoEx" type="radio" value="NO"<% if (item.get('allowHealthInfoEx')=="NO") { %> checked="checked"<% } %>><?php echo xlt('NO'); ?></label>
452 <label class="btn btn-secondary btn-gradient btn-sm"><input id="allowHealthInfoEx1" name="allowHealthInfoEx" type="radio" value="YES"<% if (item.get('allowHealthInfoEx')=="YES") { %> checked="checked"<% } %>><?php echo xlt('YES'); ?></label>
453 <label class="btn btn-secondary btn-gradient btn-sm"><input id="allowHealthInfoEx2" name="allowHealthInfoEx" type="radio" value=""<% if (item.get('allowHealthInfoEx')=="") { %> checked="checked"<% } %>><?php echo xlt('Unassigned'); ?></label>
454 <span class="help-inline"></span>
455 </div>
456 </div>
457 <div class="form-group inline" id="allowPatientPortalInputContainer">
458 <label class="control-label" for="allowPatientPortal"><?php echo xlt('Allow Patient Portal')?></label>
459 <div class="controls inline-inputs">
460 <label class="btn btn-secondary btn-gradient btn-sm"><input disabled id="allowPatientPortal0" name="allowPatientPortal" type="radio" value="NO"<% if (item.get('allowPatientPortal')=="NO") { %> checked="checked"<% } %>><?php echo xlt('NO'); ?></label>
461 <label class="btn btn-secondary btn-gradient btn-sm"><input disabled id="allowPatientPortal1" name="allowPatientPortal" type="radio" value="YES"<% if (item.get('allowPatientPortal')=="YES") { %> checked="checked"<% } %>><?php echo xlt('YES'); ?></label>
462 <label class="btn btn-secondary btn-gradient btn-sm"><input disabled id="allowPatientPortal2" name="allowPatientPortal" type="radio" value=""<% if (item.get('allowPatientPortal')=="") { %> checked="checked"<% } %>><?php echo xlt('Unassigned'); ?></label>
463 <span class="help-inline"></span>
464 </div>
465 </div>
466 <div class="form-group inline dynhide" id="careTeamInputContainer">
467 <label class="control-label" for="careTeam"><?php echo xlt('Care Team')?></label>
468 <div class="controls inline-inputs">
469 <select class="form-control" id="careTeam" placeholder="<?php echo xla('Care Team'); ?>" value="<%= _.escape(item.get('careTeam') || '') %>"></select>
470 <span class="help-inline"></span>
471 </div>
472 </div>
473 <div class="form-group inline dynhide" id="noteInputContainer">
474 <label class="control-label" style="color:green" for="note"><?php echo xlt('Message to Reviewer')?></label>
475 <div class="controls inline-inputs">
476 <textarea class="form-control" id="note" rows="1" style='min-width:180px'><%= _.escape("To Admin: ") %></textarea>
477 <span class="help-inline"></span>
478 </div>
479 </div>
480 </fieldset>
481 </form>
483 </script>
485 <div id="collectionAlert"></div>
486 <div id="modelAlert"></div>
487 <div id="patientCollectionContainer" class="collectionContainer"></div><!-- -->
488 <div id="patientModelContainer" class="modelContainer"></div>
489 </div> <!-- /container -->
490 <?php //$this->display('_Footer.tpl.php');?>
491 </body>
492 </html>
493 <!-- <div class="form-group inline" id="ethnoracialInputContainer">
494 <label class="control-label" for="ethnoracial"><?php echo xlt('Ethnoracial')?></label><br>
495 <div class="controls inline-inputs">
496 <?php
497 # Generate drop down list for Ethnoracial
498 //echo generate_select_list('ethnoracial', 'ethrace', $row['ethnoracial'], xl('Ethnoracial'), 'Unassigned', "form-control");
500 <span class="help-inline"></span>
501 </div>
502 </div> -->
503 <!-- <div class="form-group inline" id="interpretterInputContainer">
504 <label class="control-label" for="interpretter"><?php //echo xlt('Interpreter')?></label>
505 <div class="controls inline-inputs">
506 <input type="text" class="form-control" id="interpretter" placeholder="<?php //echo xla('Interpreter')?>" value="<%= _.escape(item.get('interpretter') || '') %>">
507 <span class="help-inline"></span>
508 </div>
509 </div>
510 <div class="form-group inline" id="migrantseasonalInputContainer">
511 <label class="control-label" for="migrantseasonal"><?php //echo xlt('Migrant Seasonal')?></label>
512 <div class="controls inline-inputs">
513 <input type="text" class="form-control" id="migrantseasonal" placeholder="<?php //echo xla('Migrant Seasonal')?>" value="<%= _.escape(item.get('migrantseasonal') || '') %>">
514 <span class="help-inline"></span>
515 </div>
516 </div> -->
517 <!-- <div class="form-group inline" id="industryInputContainer">
518 <label class="control-label" for="industry"><?php //echo xlt('Industry')?></label>
519 <div class="controls inline-inputs">
520 <input type="text" class="form-control" id="industry" placeholder="<?php //echo xla('Industry')?>" value="<%= _.escape(item.get('industry') || '') %>">
521 <span class="help-inline"></span>
522 </div>
523 </div>
524 <div class="form-group inline" id="occupationInputContainer">
525 <label class="control-label" for="occupation"><?php //echo xlt('Occupation')?></label>
526 <div class="controls inline-inputs">
527 <textarea class="form-control" id="occupation" rows="1" style='min-width:90px'><%= _.escape(item.get('occupation') || '') %></textarea>
528 <span class="help-inline"></span>
529 </div>
530 </div> -->
531 <!--<div class="form-group inline" id="referrerInputContainer">
532 <label class="control-label" for="referrer"><?php //echo xlt('Referrer')?></label>
533 <div class="controls inline-inputs">
534 <input type="text" class="form-control" id="referrer" placeholder="<?php //echo xla('Referrer')?>" value="<%= _.escape(item.get('referrer') || '') %>">
535 <span class="help-inline"></span>
536 </div>
537 </div>
538 <div class="form-group inline" id="referreridInputContainer">
539 <label class="control-label" for="referrerid"><?php //echo xlt('Referrerid')?></label>
540 <div class="controls inline-inputs">
541 <input type="text" class="form-control" id="referrerid" placeholder="<?php //echo xla('Referrerid')?>" value="<%= _.escape(item.get('referrerid') || '') %>">
542 <span class="help-inline"></span>
543 </div>
544 </div>-->
545 <!-- <div class="form-group inline" id="monthlyIncomeInputContainer">
546 <label class="control-label" for="monthlyIncome"><?php //echo xlt('Monthly Income')?></label>
547 <div class="controls inline-inputs">
548 <input type="text" class="form-control" id="monthlyIncome" placeholder="<?php //echo xla('Monthly Income')?>" value="<%= _.escape(item.get('monthlyIncome') || '') %>">
549 <span class="help-inline"></span>
550 </div>
551 </div>
552 <div class="form-group inline" id="billingNoteInputContainer">
553 <label class="control-label" for="billingNote"><?php //echo xlt('Billing Note')?></label>
554 <div class="controls inline-inputs">
555 <input type="text" class="form-control" id="billingNote" placeholder="<?php //echo xla('Billing Note')?>" value="<%= _.escape(item.get('billingNote') || '') %>">
556 <span class="help-inline"></span>
557 </div>
558 </div>
559 <div class="form-group inline" id="homelessInputContainer">
560 <label class="control-label" for="homeless"><?php //echo xlt('Homeless')?></label>
561 <div class="controls inline-inputs">
562 <input type="text" class="form-control" id="homeless" placeholder="<?php //echo xla('Homeless')?>" value="<%= _.escape(item.get('homeless') || '') %>">
563 <span class="help-inline"></span>
564 </div>
565 </div>
566 <div class="form-group inline" id="financialReviewInputContainer">
567 <label class="control-label" for="financialReview"><?php //echo xlt('Financial Review')?></label>
568 <div class="controls inline-inputs">
569 <div class="input-group">
570 <input id="financialReview" type="text" class="form-control jquery-date-time-picker" value="<%= item.get('financialReview') %>" />
571 </div>
572 <span class="help-inline"></span>
573 </div>
574 </div>
575 <div class="form-group inline" id="pubpidInputContainer">
576 <label class="control-label" for="pubpid"><?php //echo xlt('Pubpid')?></label>
577 <div class="controls inline-inputs">
578 <input type="text" class="form-control" id="pubpid" placeholder="<?php //echo xla('Pubpid')?>" value="<%= _.escape(item.get('pubpid') || '') %>">
579 <span class="help-inline"></span>
580 </div>
581 </div>
583 <div class="form-group inline" id="genericname1InputContainer">
584 <label class="control-label" for="genericname1"><?php //echo xlt('Genericname1')?></label>
585 <div class="controls inline-inputs">
586 <input type="text" class="form-control" id="genericname1" placeholder="<?php //echo xla('Genericname1')?>" value="<%= _.escape(item.get('genericname1') || '') %>">
587 <span class="help-inline"></span>
588 </div>
589 </div>
590 <div class="form-group inline" id="genericval1InputContainer">
591 <label class="control-label" for="genericval1"><?php //echo xlt('Genericval1')?></label>
592 <div class="controls inline-inputs">
593 <input type="text" class="form-control" id="genericval1" placeholder="<?php //echo xla('Genericval1')?>" value="<%= _.escape(item.get('genericval1') || '') %>">
594 <span class="help-inline"></span>
595 </div>
596 </div>
597 <div class="form-group inline" id="genericname2InputContainer">
598 <label class="control-label" for="genericname2"><?php //echo xlt('Genericname2')?></label>
599 <div class="controls inline-inputs">
600 <input type="text" class="form-control" id="genericname2" placeholder="<?php //echo xla('Genericname2')?>" value="<%= _.escape(item.get('genericname2') || '') %>">
601 <span class="help-inline"></span>
602 </div>
603 </div>
604 <div class="form-group inline" id="genericval2InputContainer">
605 <label class="control-label" for="genericval2"><?php //echo xlt('Genericval2')?></label>
606 <div class="controls inline-inputs">
607 <input type="text" class="form-control" id="genericval2" placeholder="<?php //echo xla('Genericval2')?>" value="<%= _.escape(item.get('genericval2') || '') %>">
608 <span class="help-inline"></span>
609 </div>
610 </div> -->
611 <!-- <div class="form-group inline" id="squadInputContainer">
612 <label class="control-label" for="squad"><?php //echo xlt('Squad')?></label>
613 <div class="controls inline-inputs">
614 <input type="text" class="form-control" id="squad" placeholder="<?php //echo xla('Squad')?>" value="<%= _.escape(item.get('squad') || '') %>">
615 <span class="help-inline"></span>
616 </div>
617 </div>
618 <div class="form-group inline" id="fitnessInputContainer">
619 <label class="control-label" for="fitness"><?php //echo xlt('Fitness')?></label>
620 <div class="controls inline-inputs">
621 <input type="text" class="form-control" id="fitness" placeholder="<?php //echo xla('Fitness')?>" value="<%= _.escape(item.get('fitness') || '') %>">
622 <span class="help-inline"></span>
623 </div>
624 </div> -->
625 <!-- <div class="form-group inline" id="allowPatientPortalInputContainer">
626 <label class="control-label" for="allowPatientPortal"><?php //echo xlt('Allow Patient Portal')?></label>
627 <div class="controls inline-inputs">
628 <label class="btn btn-secondary btn-gradient btn-sm"><input id="allowPatientPortal0" name="allowPatientPortal" type="radio" value="NO"<% if (item.get('allowPatientPortal')=="NO") { %> checked="checked"<% } %>><?php //echo xlt('NO'); ?></label>
629 <label class="btn btn-secondary btn-gradient btn-sm"><input id="allowPatientPortal1" name="allowPatientPortal" type="radio" value="YES"<% if (item.get('allowPatientPortal')=="YES") { %> checked="checked"<% } %>><?php //echo xlt('YES'); ?></label>
630 <label class="btn btn-secondary btn-gradient btn-sm"><input id="allowPatientPortal2" name="allowPatientPortal" type="radio" value=""<% if (item.get('allowPatientPortal')=="") { %> checked="checked"<% } %>><?php //echo xlt('Unassigned'); ?></label>
631 <span class="help-inline"></span>
632 </div>
633 </div>
634 <div class="form-group inline" id="deceasedDateInputContainer">
635 <label class="control-label" for="deceasedDate"><?php //echo xlt('Deceased Date')?></label>
636 <div class="controls inline-inputs">
637 <div class="input-group">
638 <input id="deceasedDate" type="text" class="form-control jquery-date-time-picker" value="<%= item.get('deceasedDate') %>" />
639 </div>
640 <span class="help-inline"></span>
641 </div>
642 </div>
643 <div class="form-group inline" id="deceasedReasonInputContainer">
644 <label class="control-label" for="deceasedReason"><?php //echo xlt('Deceased Reason')?></label>
645 <div class="controls inline-inputs">
646 <input type="text" class="form-control" id="deceasedReason" placeholder="<?php //echo xla('Deceased Reason')?>" value="<%= _.escape(item.get('deceasedReason') || '') %>">
647 <span class="help-inline"></span>
648 </div>
649 </div>
650 <div class="form-group inline" id="soapImportStatusInputContainer">
651 <label class="control-label" for="soapImportStatus"><?php //echo xlt('Soap Import Status')?></label>
652 <div class="controls inline-inputs">
653 <input type="text" class="form-control" id="soapImportStatus" placeholder="<?php //echo xla('Soap Import Status')?>" value="<%= _.escape(item.get('soapImportStatus') || '') %>">
654 <span class="help-inline"></span>
655 </div>
656 </div>
657 <div class="form-group inline" id="cmsportalLoginInputContainer">
658 <label class="control-label" for="cmsportalLogin"><?php //echo xlt('Cmsportal Login')?></label>
659 <div class="controls inline-inputs">
660 <input type="text" class="form-control" id="cmsportalLogin" placeholder="<?php //echo xla('Cmsportal Login')?>" value="<%= _.escape(item.get('cmsportalLogin') || '') %>">
661 <span class="help-inline"></span>
662 </div>
663 </div> -->
664 <!-- <div class="form-group inline" id="contrastartInputContainer">
665 <label class="control-label" for="contrastart"><?php //echo xlt('Contrastart')?></label>
666 <div class="controls inline-inputs">
667 <div class="input-group">
668 <input id="contrastart" type="text" class="form-control jquery-date-time-picker" value="<%= item.get('contrastart') %>" />
669 </div>
670 <span class="help-inline"></span>
671 </div>
672 </div>
673 <div class="form-group inline" id="completedAdInputContainer">
674 <label class="control-label" for="completedAd"><?php //echo xlt('Completed Ad')?></label>
675 <div class="controls inline-inputs">
676 <label class="btn btn-secondary btn-gradient btn-sm"><input id="completedAd0" name="completedAd" type="radio" value="NO"<% if (item.get('completedAd')=="NO") { %> checked="checked"<% } %>><?php //echo xlt('NO'); ?></label>
677 <label class="btn btn-secondary btn-gradient btn-sm"><input id="completedAd1" name="completedAd" type="radio" value="YES"<% if (item.get('completedAd')=="YES") { %> checked="checked"<% } %>><?php //echo xlt('YES'); ?></label>
678 <label class="btn btn-secondary btn-gradient btn-sm"><input id="completedAd2" name="completedAd" type="radio" value=""<% if (item.get('completedAd')=="") { %> checked="checked"<% } %>><?php //echo xlt('Unassigned'); ?></label>
679 <span class="help-inline"></span>
680 </div>
681 </div>
682 <div class="form-group inline" id="adReviewedInputContainer">
683 <label class="control-label" for="adReviewed"><?php //echo xlt('Ad Reviewed')?></label>
684 <div class="controls inline-inputs">
685 <div class="input-group">
686 <input id="adReviewed" type="text" class="form-control jquery-date-time-picker" value="<%= item.get('adReviewed') %>" />
687 </div>
688 <span class="help-inline"></span>
689 </div>
690 </div>
691 <div class="form-group inline" id="vfcInputContainer">
692 <label class="control-label" for="vfc"><?php //echo xlt('Vfc')?></label>
693 <div class="controls inline-inputs">
694 <input type="text" class="form-control" id="vfc" placeholder="<?php //echo xla('Vfc')?>" value="<%= _.escape(item.get('vfc') || '') %>">
695 <span class="help-inline"></span>
696 </div>
697 </div> -->
698 <!-- <div class="form-group inline" id="usertext1InputContainer">
699 <label class="control-label" for="usertext1"><?php //echo xlt('Usertext1')?></label>
700 <div class="controls inline-inputs">
701 <input type="text" class="form-control" id="usertext1" placeholder="<?php //echo xla('Usertext1')?>" value="<%= _.escape(item.get('usertext1') || '') %>">
702 <span class="help-inline"></span>
703 </div>
704 </div>
705 <div class="form-group inline" id="usertext2InputContainer">
706 <label class="control-label" for="usertext2"><?php //echo xlt('Usertext2')?></label>
707 <div class="controls inline-inputs">
708 <input type="text" class="form-control" id="usertext2" placeholder="<?php //echo xla('Usertext2')?>" value="<%= _.escape(item.get('usertext2') || '') %>">
709 <span class="help-inline"></span>
710 </div>
711 </div>
712 <div class="form-group inline" id="usertext3InputContainer">
713 <label class="control-label" for="usertext3"><?php //echo xlt('Usertext3')?></label>
714 <div class="controls inline-inputs">
715 <input type="text" class="form-control" id="usertext3" placeholder="<?php //echo xla('Usertext3')?>" value="<%= _.escape(item.get('usertext3') || '') %>">
716 <span class="help-inline"></span>
717 </div>
718 </div>
719 <div class="form-group inline" id="usertext4InputContainer">
720 <label class="control-label" for="usertext4"><?php //echo xlt('Usertext4')?></label>
721 <div class="controls inline-inputs">
722 <input type="text" class="form-control" id="usertext4" placeholder="<?php //echo xla('Usertext4')?>" value="<%= _.escape(item.get('usertext4') || '') %>">
723 <span class="help-inline"></span>
724 </div>
725 </div>
726 <div class="form-group inline" id="usertext5InputContainer">
727 <label class="control-label" for="usertext5"><?php //echo xlt('Usertext5')?></label>
728 <div class="controls inline-inputs">
729 <input type="text" class="form-control" id="usertext5" placeholder="<?php //echo xla('Usertext5')?>" value="<%= _.escape(item.get('usertext5') || '') %>">
730 <span class="help-inline"></span>
731 </div>
732 </div>
733 <div class="form-group inline" id="usertext6InputContainer">
734 <label class="control-label" for="usertext6"><?php //echo xlt('Usertext6')?></label>
735 <div class="controls inline-inputs">
736 <input type="text" class="form-control" id="usertext6" placeholder="<?php //echo xla('Usertext6')?>" value="<%= _.escape(item.get('usertext6') || '') %>">
737 <span class="help-inline"></span>
738 </div>
739 </div>
740 <div class="form-group inline" id="usertext7InputContainer">
741 <label class="control-label" for="usertext7"><?php //echo xlt('Usertext7')?></label>
742 <div class="controls inline-inputs">
743 <input type="text" class="form-control" id="usertext7" placeholder="<?php //echo xla('Usertext7')?>" value="<%= _.escape(item.get('usertext7') || '') %>">
744 <span class="help-inline"></span>
745 </div>
746 </div>
747 <div class="form-group inline" id="usertext8InputContainer">
748 <label class="control-label" for="usertext8"><?php //echo xlt('Usertext8')?></label>
749 <div class="controls inline-inputs">
750 <input type="text" class="form-control" id="usertext8" placeholder="<?php //echo xla('Usertext8')?>" value="<%= _.escape(item.get('usertext8') || '') %>">
751 <span class="help-inline"></span>
752 </div>
753 </div>
754 <div class="form-group inline" id="userlist1InputContainer">
755 <label class="control-label" for="userlist1"><?php //echo xlt('Userlist1')?></label>
756 <div class="controls inline-inputs">
757 <input type="text" class="form-control" id="userlist1" placeholder="<?php //echo xla('Userlist1')?>" value="<%= _.escape(item.get('userlist1') || '') %>">
758 <span class="help-inline"></span>
759 </div>
760 </div>
761 <div class="form-group inline" id="userlist2InputContainer">
762 <label class="control-label" for="userlist2"><?php //echo xlt('Userlist2')?></label>
763 <div class="controls inline-inputs">
764 <input type="text" class="form-control" id="userlist2" placeholder="<?php //echo xla('Userlist2')?>" value="<%= _.escape(item.get('userlist2') || '') %>">
765 <span class="help-inline"></span>
766 </div>
767 </div>
768 <div class="form-group inline" id="userlist3InputContainer">
769 <label class="control-label" for="userlist3"><?php //echo xlt('Userlist3')?></label>
770 <div class="controls inline-inputs">
771 <input type="text" class="form-control" id="userlist3" placeholder="<?php //echo xla('Userlist3')?>" value="<%= _.escape(item.get('userlist3') || '') %>">
772 <span class="help-inline"></span>
773 </div>
774 </div>
775 <div class="form-group inline" id="userlist4InputContainer">
776 <label class="control-label" for="userlist4"><?php //echo xlt('Userlist4')?></label>
777 <div class="controls inline-inputs">
778 <input type="text" class="form-control" id="userlist4" placeholder="<?php //echo xla('Userlist4')?>" value="<%= _.escape(item.get('userlist4') || '') %>">
779 <span class="help-inline"></span>
780 </div>
781 </div>
782 <div class="form-group inline" id="userlist5InputContainer">
783 <label class="control-label" for="userlist5"><?php //echo xlt('Userlist5')?></label>
784 <div class="controls inline-inputs">
785 <input type="text" class="form-control" id="userlist5" placeholder="<?php //echo xla('Userlist5')?>" value="<%= _.escape(item.get('userlist5') || '') %>">
786 <span class="help-inline"></span>
787 </div>
788 </div>
789 <div class="form-group inline" id="userlist6InputContainer">
790 <label class="control-label" for="userlist6"><?php //echo xlt('Userlist6')?></label>
791 <div class="controls inline-inputs">
792 <input type="text" class="form-control" id="userlist6" placeholder="<?php //echo xla('Userlist6')?>" value="<%= _.escape(item.get('userlist6') || '') %>">
793 <span class="help-inline"></span>
794 </div>
795 </div>
796 <div class="form-group inline" id="userlist7InputContainer">
797 <label class="control-label" for="userlist7"><?php //echo xlt('Userlist7')?></label>
798 <div class="controls inline-inputs">
799 <input type="text" class="form-control" id="userlist7" placeholder="<?php //echo xla('Userlist7')?>" value="<%= _.escape(item.get('userlist7') || '') %>">
800 <span class="help-inline"></span>
801 </div>
802 </div>
803 <div class="form-group inline" id="pricelevelInputContainer">
804 <label class="control-label" for="pricelevel"><?php //echo xlt('Pricelevel')?></label>
805 <div class="controls inline-inputs">
806 <input type="text" class="form-control" id="pricelevel" placeholder="<?php //echo xla('Pricelevel')?>" value="<%= _.escape(item.get('pricelevel') || '') %>">
807 <span class="help-inline"></span>
808 </div>
809 </div>-->