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

36 lines
506 B
HTML
Raw Normal View History

2019-08-10 16:21:12 +02:00
<div class="well debug">
2019-10-24 16:08:56 +02:00
<strong>
<h2 i18n>
infos de debug
</h2>
<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>
{{config|json}}
</pre>
</li>
</ul>
2019-08-10 16:21:12 +02:00
</div>
<button
2019-10-24 16:08:56 +02:00
class="btn"
i18n
(click)="config.sendForm()"
>
2019-10-24 16:08:56 +02:00
Envoyer le formulaire
2019-08-10 16:21:12 +02:00
</button>