View | Details | Raw Unified | Return to bug 17855
Collapse All | Expand All

(-)a/installer/onboarding.pl (-2 / +2 lines)
Lines 129-135 if ( $start && $start eq 'Start setting up my Koha' ) { Link Here
129
        ]
129
        ]
130
    );
130
    );
131
}
131
}
132
elsif ( $start && $start eq 'Add a patron category' ) {
132
elsif ( $start && $start eq 'Minimal patron category setup' ) {
133
133
134
#Select all the patron category records in the categories database table and give them to the template
134
#Select all the patron category records in the categories database table and give them to the template
135
    my $categories = Koha::Patron::Categories->search();
135
    my $categories = Koha::Patron::Categories->search();
Lines 137-143 elsif ( $start && $start eq 'Add a patron category' ) { Link Here
137
137
138
#Check if the $step variable equals 1 i.e. the user has clicked to create a library in the create library screen 1
138
#Check if the $step variable equals 1 i.e. the user has clicked to create a library in the create library screen 1
139
}
139
}
140
elsif ( $start && $start eq 'Add an item type' ) {
140
elsif ( $start && $start eq 'Minimal item type setup' ) {
141
141
142
    my $itemtypes = Koha::ItemTypes->search();
142
    my $itemtypes = Koha::ItemTypes->search();
143
    $template->param( itemtypes => $itemtypes, );
143
    $template->param( itemtypes => $itemtypes, );
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt (-3 / +3 lines)
Lines 66-72 function Hide(link) Link Here
66
66
67
[% IF ( finish ) %]
67
[% IF ( finish ) %]
68
    <h1>Congratulations, installation complete</h1>
68
    <h1>Congratulations, installation complete</h1>
69
    <p>If this page does not redirect in 5 seconds, click <a href="/cgi-bin/koha/installer/onboarding.pl">here</a>.</p>
69
    <p>If this page does not redirect in 5 seconds, click <a href="/cgi-bin/koha/installer/onboarding.pl">Start onboarding process</a>.</p>
70
[% END %]
70
[% END %]
71
71
72
72
Lines 217-227 function Hide(link) Link Here
217
    [% END %]
217
    [% END %]
218
    <h3>All done!</h3>
218
    <h3>All done!</h3>
219
    <p>Installation complete.<br />
219
    <p>Installation complete.<br />
220
        <p>Click on 'Continue to onboarding tool' to complete and load the Koha onboarding tool.
220
        <p>Click on 'Set Koha version system preference' to complete and load the Koha onboarding tool.
221
        <form name="finish">
221
        <form name="finish">
222
        <input type="hidden" name="step" value="3" />
222
        <input type="hidden" name="step" value="3" />
223
        <input type="hidden" name="op" value="finish" />
223
        <input type="hidden" name="op" value="finish" />
224
        <input type="submit" value="Continue to Koha onboarding tool"/>
224
        <input type="submit" value="Set Koha version system preference"/>
225
        </form>
225
        </form>
226
        </p>
226
        </p>
227
    </p>
227
    </p>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep1.tt (-2 / +2 lines)
Lines 17-23 Link Here
17
    <form name="skiplibrary" method="post" action="onboarding.pl">
17
    <form name="skiplibrary" method="post" action="onboarding.pl">
18
        <input type="hidden" name="step" value="2"/>
18
        <input type="hidden" name="step" value="2"/>
19
        <div>
19
        <div>
20
            <input type="submit" name="start" value="Add a patron category"/>
20
            <input type="submit" name="start" value="Minimal patron category setup"/>
21
        </div>
21
        </div>
22
    </form>
22
    </form>
23
23
Lines 37-43 Link Here
37
                    </p>
37
                    </p>
38
                </div>
38
                </div>
39
                Next up:
39
                Next up:
40
                <input type="submit" name="start" value="Add a patron category"/>
40
                <input type="submit" name="start" value="Minimal patron category setup"/>
41
            </form>
41
            </form>
42
42
43
        [%ELSE %]
43
        [%ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep3.tt (-2 / +1 lines)
Lines 109-115 $(document).ready(function(){ Link Here
109
                More -> Set Permissions in a user page to gain superlibrarian permissions.
109
                More -> Set Permissions in a user page to gain superlibrarian permissions.
110
            </div>
110
            </div>
111
            Next up:
111
            Next up:
112
            <input type="submit" name="start" value="Add an item type"/>
112
            <input type="submit" name="start" value="Minimal item type setup"/>
113
        </form>
113
        </form>
114
[% ELSE %]
114
[% ELSE %]
115
<!--Create a patron screen 1-->
115
<!--Create a patron screen 1-->
116
- 

Return to bug 17855