ebay_template_form.tpl
2.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php echo $header; ?><?php echo $column_left; ?>
<div id="content">
<div class="page-header">
<div class="container-fluid">
<div class="pull-right">
<a onclick="$('#form').submit();" data-toggle="tooltip" title="<?php echo $button_save; ?>" class="btn btn-primary"><i class="fa fa-check-circle"></i></a>
<a href="<?php echo $cancel; ?>" data-toggle="tooltip" title="<?php echo $button_cancel; ?>" class="btn btn-default"><i class="fa fa-reply"></i></a>
</div>
<h1><?php echo $heading_title; ?></h1>
<ul class="breadcrumb">
<?php foreach ($breadcrumbs as $breadcrumb) { ?>
<li><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a></li>
<?php } ?>
</ul>
</div>
</div>
<div class="container-fluid">
<?php if ($error_warning) { ?>
<div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> <?php echo $error_warning; ?>
<button type="button" class="close" data-dismiss="alert">×</button>
</div>
<?php } ?>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><i class="fa fa-list"></i> <?php echo $text_manage; ?></h3>
</div>
<div class="panel-body">
<form action="<?php echo $btn_save; ?>" method="post" enctype="multipart/form-data" id="form" class="form-horizontal">
<input type="hidden" name="template_id" value="<?php echo $template_id; ?>" />
<div class="form-group">
<label class="col-sm-2 control-label" for="name"><?php echo $entry_template_name; ?></label>
<div class="col-sm-10">
<input type="text" name="name" value="<?php if (isset($name)){ echo $name; } ?>" placeholder="<?php echo $entry_template_name; ?>" id="name" class="form-control" />
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="code"><?php echo $entry_template_html; ?></label>
<div class="col-sm-10">
<textarea name="html" cols="100" rows="100" placeholder="<?php echo $entry_template_html; ?>" id="code" class="form-control"><?php if (isset($html)){ echo $html; } ?></textarea>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<style type="text/css"> .CodeMirror {border: 1px solid #888; height:1000px; width:100%;} </style>
<script type="text/javascript"><!--
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
mode: 'text/html',
autoCloseTags: true,
lineNumbers: true,
tabMode: "indent",
lineWrapping: true,
indentUnit: 2
});
//--></script>
<?php echo $footer; ?>