Newer
Older
ubFramework / Portal / docroot / templates / user / dialer / edit.html
@Christopher W. Olsen Christopher W. Olsen on 10 Dec 2017 1 KB Cleaning Up Making It A Sub Module
<h1>Broadcast Campaign Editor</h1>
<hr />
{MESSAGES}
<form method="POST" action="{SELF}">
<input type="hidden" name="data[cid]" value="{CAMPAIGN_ID}">
<h2>Broadcast Campaign Preferences:</h2>
<table class="pmTable">
<tr>
  <th>Campaign ID:</th>
  <td>{CAMPAIGN_ID}</td>
</tr>
<tr>
  <th>Campaign Name:</th>
  <td><input type="test" name="data[campaign_name]" value="{CAMPAIGN_NAME}" size="50"></td>
</tr>
<tr>
  <th>Daily Spending Limit:</th>
  <td><input type="text" name="data[daily_limit]" value="{DAILY_LIMIT}"></td>
</tr>
<tr>
  <th>Outbound Caller ID:</th>
  <td><input type="text" name="data[campaign_cid]" value="{CALLER_ID}"></td>
</tr>
<tr>
  <th>Concurrent Calls:</th>
  <td><select name="data[auto_dial_level]">{CALL_SPEED}</select></td>
</tr>
<tr>
  <th>Local Call Time:</th>
  <td><select name="data[call_time]">{CALL_TIME}</select></td>
</tr>
<tr>
  <th>Ring To:</th>
  <td><input type="text" name="data[survey_xfer_exten]" value="{RING_TO}"></td>
</tr>
</table>
<input type="submit" name="data[up]" value="Update">
</form>