Lines 43-54
Link Here
|
43 |
<div id="logo"><a href="#">Koha</a></div> |
43 |
<div id="logo"><a href="#">Koha</a></div> |
44 |
[% IF ( finish ) %] |
44 |
[% IF ( finish ) %] |
45 |
<h1>Web installer › Installation complete</h1> |
45 |
<h1>Web installer › Installation complete</h1> |
46 |
<h3>Congratulations, installation complete</h3> |
46 |
<h2>Congratulations, installation complete</h2> |
47 |
<p><a class="btn btn-primary" href="/cgi-bin/koha/installer/onboarding.pl">Begin the onboarding process</a></p> |
47 |
<p><a class="btn btn-primary" href="/cgi-bin/koha/installer/onboarding.pl">Begin the onboarding process</a></p> |
48 |
[% END %] |
48 |
[% END %] |
49 |
|
49 |
|
50 |
[% IF ( choosemarc ) %] |
50 |
[% IF ( choosemarc ) %] |
51 |
<h2>Select your MARC flavor</h2> |
51 |
<h1>Select your MARC flavor</h1> |
52 |
|
52 |
|
53 |
<form name="frameworkselection" method="post" action="install.pl"> |
53 |
<form name="frameworkselection" method="post" action="install.pl"> |
54 |
<input type="hidden" name="step" value="3" /> |
54 |
<input type="hidden" name="step" value="3" /> |
Lines 79-93
Link Here
|
79 |
<input type="hidden" name="step" value="3" /> |
79 |
<input type="hidden" name="step" value="3" /> |
80 |
<input type="hidden" name="op" value="addframeworks" /> |
80 |
<input type="hidden" name="op" value="addframeworks" /> |
81 |
[% IF ( frameworksloop ) %] |
81 |
[% IF ( frameworksloop ) %] |
82 |
<h3>MARC frameworks: [% marcflavour | html %]</h3> |
82 |
<h2>MARC frameworks: [% marcflavour | html %]</h2> |
83 |
[% IF ( en_marc_frameworks ) %] |
83 |
[% IF ( en_marc_frameworks ) %] |
84 |
<h4><span class="error">No MARC frameworks are available for your language. |
84 |
<h3><span class="error">No MARC frameworks are available for your language. |
85 |
Defaulting to the frameworks supplied for English (en)<span></h4> |
85 |
Defaulting to the frameworks supplied for English (en)<span></h3> |
86 |
[% END %] |
86 |
[% END %] |
87 |
[% FOREACH frameworksloo IN frameworksloop %] |
87 |
[% FOREACH frameworksloo IN frameworksloop %] |
88 |
[%- SWITCH frameworksloo.label -%] |
88 |
[%- SWITCH frameworksloo.label -%] |
89 |
[%- CASE 'mandatory' -%]<h4>Mandatory</h4> |
89 |
[%- CASE 'mandatory' -%]<h3>Mandatory</h3> |
90 |
[%- CASE 'optional' -%]<h4>Optional</h4> |
90 |
[%- CASE 'optional' -%]<h3>Optional</h3> |
91 |
[%- END -%] |
91 |
[%- END -%] |
92 |
|
92 |
|
93 |
<div class="checkboxes"> |
93 |
<div class="checkboxes"> |
Lines 117-133
Link Here
|
117 |
[% END # / FOREACH frameworksloo %] |
117 |
[% END # / FOREACH frameworksloo %] |
118 |
[% END # / IF frameworkdsloop %] |
118 |
[% END # / IF frameworkdsloop %] |
119 |
|
119 |
|
120 |
<h3>Other data</h3> |
120 |
<h2>Other data</h2> |
121 |
|
121 |
|
122 |
[% IF ( en_sample_data ) %] |
122 |
[% IF ( en_sample_data ) %] |
123 |
<h4><span class="error">No sample data and settings are available for your language. |
123 |
<h3><span class="error">No sample data and settings are available for your language. |
124 |
Defaulting to the samples supplied for English (en)<span></h4> |
124 |
Defaulting to the samples supplied for English (en)<span></h3> |
125 |
[% END %] |
125 |
[% END %] |
126 |
|
126 |
|
127 |
[% FOREACH levelloo IN levelloop %] |
127 |
[% FOREACH levelloo IN levelloop %] |
128 |
[%- SWITCH levelloo.label -%] |
128 |
[%- SWITCH levelloo.label -%] |
129 |
[%- CASE 'mandatory' -%]<h4>Mandatory</h4> |
129 |
[%- CASE 'mandatory' -%]<h3>Mandatory</h3> |
130 |
[%- CASE 'optional' -%]<h4>Optional</h4> |
130 |
[%- CASE 'optional' -%]<h3>Optional</h3> |
131 |
[%- END -%] |
131 |
[%- END -%] |
132 |
|
132 |
|
133 |
<div class="checkboxes"> |
133 |
<div class="checkboxes"> |
Lines 164-178
Link Here
|
164 |
<h1>Web installer › Default data loaded</h1> |
164 |
<h1>Web installer › Default data loaded</h1> |
165 |
[% FOREACH lis IN list %] |
165 |
[% FOREACH lis IN list %] |
166 |
[% IF lis.level == 'mandatory' %] |
166 |
[% IF lis.level == 'mandatory' %] |
167 |
<h3>Mandatory data added</h3> |
167 |
<h2>Mandatory data added</h2> |
168 |
[% ELSIF lis.level == 'optional' %] |
168 |
[% ELSIF lis.level == 'optional' %] |
169 |
<h3>Optional data added</h3> |
169 |
<h2>Optional data added</h2> |
170 |
[% ELSIF lis.level == 'mysql' %] |
170 |
[% ELSIF lis.level == 'mysql' %] |
171 |
<h3>MySQL data added</h3> |
171 |
<h2>MySQL data added</h2> |
172 |
[% ELSIF lis.level == 'localization' %] |
172 |
[% ELSIF lis.level == 'localization' %] |
173 |
<h3>Localization data added</h3> |
173 |
<h2>Localization data added</h2> |
174 |
[% ELSE %] |
174 |
[% ELSE %] |
175 |
<h3>[% lis.level FILTER ucfirst | html %] data added</h3> |
175 |
<h2>[% lis.level FILTER ucfirst | html %] data added</h2> |
176 |
[% END %] |
176 |
[% END %] |
177 |
<ul> |
177 |
<ul> |
178 |
[% FOREACH fwklis IN lis.fwklist %] |
178 |
[% FOREACH fwklis IN lis.fwklist %] |
Lines 184-197
Link Here
|
184 |
</ul> |
184 |
</ul> |
185 |
[% END %] |
185 |
[% END %] |
186 |
|
186 |
|
187 |
<h3>Basic installation complete.</h3> |
187 |
<h2>Basic installation complete.</h2> |
188 |
|
188 |
|
189 |
<p>In the next steps you will be guided through some basic requirements like defining Koha user with all administrative privileges (superlibrarian).</p> |
189 |
<p>In the next steps you will be guided through some basic requirements like defining Koha user with all administrative privileges (superlibrarian).</p> |
190 |
|
190 |
|
191 |
<form action="/cgi-bin/koha/installer/install.pl" method="post" name="finish"> |
191 |
<form action="/cgi-bin/koha/installer/install.pl" method="post" name="finish"> |
192 |
<h4> |
192 |
<h2> |
193 |
You can help the Koha community by sharing your statistics with us. |
193 |
You can help the Koha community by sharing your statistics with us. |
194 |
</h4> |
194 |
</h2> |
195 |
<p> |
195 |
<p> |
196 |
If you wish to share some of your data, please enable the functionality in the "Share your usage statistics" section of the Administration module. |
196 |
If you wish to share some of your data, please enable the functionality in the "Share your usage statistics" section of the Administration module. |
197 |
</p> |
197 |
</p> |
198 |
- |
|
|