servicedb.twig (2045B)
1 {{ header }}{{ column_left }} 2 <div id="content"> 3 <div class="page-header"> 4 <div class="container-fluid"> 5 <div class="pull-right"> 6 <button type="submit" form="form-account" data-toggle="tooltip" title="{{ button_save }}" class="btn btn-primary"><i class="fa fa-save"></i></button> 7 <a href="{{ cancel }}" data-toggle="tooltip" title="{{ button_cancel }}" class="btn btn-default"><i class="fa fa-reply"></i></a></div> 8 <h1>{{ heading_title }}</h1> 9 <ul class="breadcrumb"> 10 {% for breadcrumb in breadcrumbs %} 11 <li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li> 12 {% endfor %} 13 </ul> 14 </div> 15 </div> 16 <div class="container-fluid"> 17 {% if error.error_warning %} 18 <div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> {{ error.error_warning }} 19 <button type="button" class="close" data-dismiss="alert">×</button> 20 </div> 21 {% endif %} 22 {% if error_secret_key %} 23 <div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> {{ error_secret_key }} 24 <button type="button" class="close" data-dismiss="alert">×</button> 25 </div> 26 {% endif %} 27 <div class="panel panel-default"> 28 <div class="panel-heading"> 29 <h3 class="panel-title"><i class="fa fa-pencil"></i> {{ heading_title }} </h3> 30 </div> 31 <div class="panel-body"> 32 <form action="{{ action }}" method="post" enctype="multipart/form-data" id="form-servicedb" class="form-horizontal"> 33 34 <div class="form-group required"> 35 <label class="col-sm-2 control-label" for="input-name">{{ secret_kay_label }} </label> 36 <div class="col-sm-10"> 37 <input type="text" name="servicedb_secret_key" value="{{ servicedb_secret_key }}" placeholder="{{ secret_kay_label }}" id="input-name" class="form-control" /> 38 {% if error_secret_key %} 39 <div class="text-danger">{{ error_secret_key }}</div> 40 {% endif %} 41 42 </div> 43 </div> 44 </form> 45 </div> 46 </div> 47 </div> 48 </div> 49 {{ footer }}