Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1379 → Rev 1381

/asterisk-stats/trunk/template/telbook_edit_end.tpl
0,0 → 1,10
<tr class="buttons">
<td colspan=2>
<input type=reset name="reset" value="Reset">
<input type=submit name=update value="Update">
<input type=submit name=delete value="Delete">
</td>
</tr>
</table>
</form>
 
/asterisk-stats/trunk/template/telbook_category_list_end.tpl
0,0 → 1,3
<p><a href="telbook_categories.php?edit=">New category</a></p>
<p><a href="telbook.php">Back to tel. book</a></p>
 
/asterisk-stats/trunk/template/telbook_list_end.tpl
0,0 → 1,8
<p><a href="telbook.php?edit=">New person</a></p>
<p><a href="telbook_categories.php">Categories</a></p>
 
<p>Export into format:
<ul>
<li><a href="telbook_export.php?type=panasonic">Panasonik</a></li>
</ul>
 
/asterisk-stats/trunk/template/telbook_category_edit.tpl
0,0 → 1,25
<form method="POST" action="telbook_categories.php">
<input type=hidden name=id value="${CATEGORY_ID}">
<table class="telbook edit">
<tr>
<th>Name</th>
<td><input type=text name=category_name value="${CATEGORY_NAME}"></td>
</tr>
<tr>
<th>Comment</th>
<td><textarea name=category_comment>${CATEGORY_COMMENT}</textarea></td>
</tr>
<tr>
<th>Export Key</th>
<td><input type=text name=category_export_key value="${CATEGORY_EXPORT_KEY}"></td>
</tr>
<tr class="buttons">
<td colspan=2>
<input type=reset name="reset" value="Reset">
<input type=submit name=update value="Update">
<input type=submit name=delete value="Delete">
</td>
</tr>
</table>
</form>
 
/asterisk-stats/trunk/template/menu.tpl
3,5 → 3,6
<td><a href=..>Up</a></td>
<td><a href=${HREF_HOME}>Summary</a></td>
<td><a href=${HREF_CDR}>Search</a></td>
<td><a href=${HREF_TELBOOK}>Tel. Book</a></td>
</tr>
</table>
/asterisk-stats/trunk/template/cdr.tpl
1,4 → 1,4
<form method="${CDR_METHOD}" action="${CDR_ACTION}">
<form method="GET" action="index.php">
<input type=hidden name=m value=cdr>
<input type=hidden name=s>
<table class="stat cdr search">
47,3 → 47,5
<td><input type=submit value="Show CDR"></td>
</tr>
</table>
</form>
 
/asterisk-stats/trunk/template/telbook_edit_begin.tpl
0,0 → 1,18
<form method="POST" action="telbook.php">
<input type=hidden name=id value="${PERSON_ID}">
<table class="telbook edit">
<tr>
<th>Name</th>
<td><input type=text name=person_name value="${PERSON_NAME}"></td>
</tr>
<tr>
<th>Comment</th>
<td><textarea name=person_comment>${PERSON_COMMENT}</textarea></td>
</tr>
<tr>
<th>Category</th>
<td>
<select name=person_category>${CATEGORIES}
</select>
</td>
</tr>