HTML
xxxxxxxxxx
1
<ul class="stepper horizontal horizontal-fix linear">
2
<li class="step">
3
<div class="step-title waves-effect waves-dark">O. prescripteurs</div>
4
<div class="step-new-content">
5
<div>
6
<h4 class="text-primary mb-5"><i class="fal fa-building mr-2"></i>Sélectionnez le ou les organismes prescripteurs associés</h4>
7
<table class="table table-striped table-bordered table-sm btn-table dataTables" cellspacing="0" width="100%">
8
<thead>
9
<tr><th class="th-sm">Organismes prescripteurs</th></tr>
10
</thead>
11
<tbody>
12
<tr>
13
<td>
14
<div class="form-check">
15
<input type="checkbox" class="form-check-input" id="op-{{ op.id }}" name="op[]">
16
<label class="form-check-label" for="op-{{ op.id }}">test</label>
17
</div>
18
</td>
19
</tr>
20
<tr>
21
<td>
22
<div class="form-check">
23
<input type="checkbox" class="form-check-input" id="op-{{ op.id }}" name="op[]">
24
<label class="form-check-label" for="op-{{ op.id }}">test</label>
25
</div>
26
</td>
27
</tr>
28
<tr>
29
<td>
30
<div class="form-check">
31
<input type="checkbox" class="form-check-input" id="op-{{ op.id }}" name="op[]">
32
<label class="form-check-label" for="op-{{ op.id }}">test</label>
33
</div>
34
</td>
35
</tr>
36
<tr>
37
<td>
38
<div class="form-check">
39
<input type="checkbox" class="form-check-input" id="op-{{ op.id }}" name="op[]">
40
<label class="form-check-label" for="op-{{ op.id }}">test</label>
41
</div>
42
</td>
43
</tr>
44
<tr>
45
<td>
46
<div class="form-check">
47
<input type="checkbox" class="form-check-input" id="op-{{ op.id }}" name="op[]">
48
<label class="form-check-label" for="op-{{ op.id }}">test</label>
49
</div>
50
</td>
51
</tr>
52
</tbody>
53
</table>
54
<div class="step-actions">
55
<button type="button" class="btn btn-primary btn-rounded mr-0 next-step">Etape suivante<i class="fal fa-arrow-alt-right ml-2"></i></button>
56
<button type="button" class="btn btn-blue-grey btn-rounded mr-0 previous-step"><i class="fal fa-arrow-alt-left mr-2"></i>Etape précédente</button>
57
</div>
58
</div>
59
</div>
60
</li>
61
</ul>
CSS
1
1
JS
xxxxxxxxxx
1
$('.stepper').mdbStepper();
Console errors: 0