funky-framadate-front/src/app/debugger/debugger.component.html

37 lines
668 B
HTML
Raw Normal View History

2019-08-10 16:21:12 +02:00
<div class="well debug">
<strong>
<h2 i18n>
infos de debug
</h2>
2019-10-01 16:52:36 +02:00
<span class="demo">
{{"config.demo"|translate}}
</span>
</strong>
<ul>
<li>
étape actuelle {{config.step}} / {{config.stepMax}}
</li>
<li>
formulaire valide : {{formIsValid}}
</li>
<li>
type de formulaire: {{config.pollType}}
</li>
<li>
config:
<pre>
2019-08-10 16:21:12 +02:00
{{config|json}}
</pre>
</li>
</ul>
2019-08-10 16:21:12 +02:00
</div>
<button
class="btn"
i18n
(click)="config.sendForm()"
>
Envoyer le formulaire
2019-08-10 16:21:12 +02:00
</button>