Remove unused template.
This commit is contained in:
parent
3559d4acc0
commit
19fdb785ba
@ -1,89 +0,0 @@
|
|||||||
<!-- vim: set tw=80 ts=2 sw=2 sts=2: -->
|
|
||||||
<div class="modal top am-fade" tabindex="-1" role="dialog" aria-hidden="true">
|
|
||||||
<div class="modal-dialog">
|
|
||||||
<div class="modal-content">
|
|
||||||
<div class="modal-header">
|
|
||||||
<h3 class="modal-title" id="modal-title">{{ title }}</h3>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="modal-body" id="modal-body">
|
|
||||||
<form class="form-horizontal simple-form">
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="col-sm-4 control-label" for="start-date">Date de début</label>
|
|
||||||
<div class="col-sm-8">
|
|
||||||
<input class="form-control" id="start-date" name="start_date"
|
|
||||||
type="text" ng-model="operation.start_date"
|
|
||||||
bs-datepicker data-date-format="yyyy-MM-dd" data-timezone="UTC"
|
|
||||||
placeholder="Scheduled operation start date">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="col-sm-4 control-label" for="stop-date">Date de fin</label>
|
|
||||||
<div class="col-sm-8">
|
|
||||||
<input class="form-control" id="stop-date" name="stop_date"
|
|
||||||
type="text" ng-model="operation.stop_date"
|
|
||||||
bs-datepicker data-date-format="yyyy-MM-dd" data-timezone="UTC"
|
|
||||||
placeholder="Scheduled operation stop date">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="col-sm-4 control-label" for="day">Jour</label>
|
|
||||||
<div class="col-sm-8">
|
|
||||||
<input class="form-control" id="day" name="day"
|
|
||||||
ng-model="operation.day" type="number" placeholder="Day">
|
|
||||||
</input>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="col-sm-4 control-label" for="frequency">Fréquence</label>
|
|
||||||
<div class="col-sm-8">
|
|
||||||
<input class="form-control" id="frequency" name="frequency"
|
|
||||||
ng-model="operation.frequency" type="number" placeholder="Frequency">
|
|
||||||
</input>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="col-sm-4 control-label" for="label">Label</label>
|
|
||||||
<div class="col-sm-8">
|
|
||||||
<input class="form-control" id="label" name="label"
|
|
||||||
ng-model="operation.label" type="text" placeholder="Label">
|
|
||||||
</input>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="col-sm-4 control-label" for="value">Montant</label>
|
|
||||||
<div class="col-sm-8">
|
|
||||||
<input class="form-control" id="value" name="value"
|
|
||||||
ng-model="operation.value" type="number" placeholder="Value">
|
|
||||||
</input>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="col-sm-4 control-label" for="category">Catégorie</label>
|
|
||||||
<div class="col-sm-8">
|
|
||||||
<input class="form-control" id="category" name="category"
|
|
||||||
ng-model="operation.category" type="text" placeholder="Category">
|
|
||||||
</input>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="modal-footer">
|
|
||||||
<button class="btn btn-primary" type="button" ng-click="$save()">
|
|
||||||
OK
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button class="btn btn-default" type="button" ng-click="$hide()">
|
|
||||||
Annuler
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
@ -9,8 +9,6 @@ import { ScheduleEditModalComponent } from './scheduleEditModal.component';
|
|||||||
import { ScheduleService } from './schedule.service';
|
import { ScheduleService } from './schedule.service';
|
||||||
import { Schedule } from './schedule';
|
import { Schedule } from './schedule';
|
||||||
|
|
||||||
var scheduleFormTmpl = require('./schedule.form.tmpl.html');
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'schedule-list',
|
selector: 'schedule-list',
|
||||||
template: `
|
template: `
|
||||||
|
Loading…
Reference in New Issue
Block a user