mourningdove/views/create/progress.tt

20 lines
631 B
Text
Raw Normal View History

2026-05-24 01:03:05 +00:00
[%# Progress meter for the account creation flow
Authors:
Afuna <coder.dw@afunamatata.com>
Copyright (c) 2015 by Dreamwidth Studios, LLC.
This program is free software; you may redistribute it and/or modify it under
the same terms as Perl itself. For a copy of the license, please reference
'perldoc perlartistic' or 'perldoc perlgpl'.
%]
<div class="row"><div class="columns">
<ol class="progress-meter">
[%- FOR s = steps_to_show -%]
<li class="unavailable [% s == step ? "current" : "" %] [% s < step ? "finished" : "" %]">[%- "widget.createaccountprogressmeter.step$s" | ml -%]</li>
[%- END -%]
</ol>
</div></div>