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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/branch-selector.inc (-1 / +6 lines)
Lines 9-15 END %] Link Here
9
    <div class="branchgridrow">
9
    <div class="branchgridrow">
10
    [% FOREACH branch IN branches %]
10
    [% FOREACH branch IN branches %]
11
        <div class="branchgriditem">
11
        <div class="branchgriditem">
12
            <input id="branch_[% branch.value %]" type="checkbox" name="branch" value="[% branch.value %]"[% IF branch.selected || (selectall == 1) %] checked="checked" [% END %]/>
12
            [% IF branch.selected || (selectall == 1) %]
13
                <input id="branch_[% branch.value %]" type="checkbox" name="branch" value="[% branch.value %]" checked="checked" />
14
            [% ELSE %]
15
                <input id="branch_[% branch.value %]" type="checkbox" name="branch" value="[% branch.value %]" />
16
            [% END %]
17
13
            <label for="branch_[% branch.value %]">[% branch.branchname %]</label>
18
            <label for="branch_[% branch.value %]">[% branch.branchname %]</label>
14
        </div>
19
        </div>
15
        [% IF loop.count() % 4 == 0 && !loop.last() %]
20
        [% IF loop.count() % 4 == 0 && !loop.last() %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/export.tt (-11 / +10 lines)
Lines 13-36 Link Here
13
<ul>
13
<ul>
14
    <li>Choose to limit your export by any one or more of the following options
14
    <li>Choose to limit your export by any one or more of the following options
15
<ul>
15
<ul>
16
	<li>Limit to a bib number range</li>
16
    <li>Limit to a bib number range</li>
17
	<li>Limit to a specific item type</li>
17
    <li>Limit to a specific item type</li>
18
	<li>Limit to a specific set of libraries</li>
18
    <li>Limit to a specific set of libraries</li>
19
	<li>Limit to a call number range</li>
19
    <li>Limit to a call number range</li>
20
	<li>Limit to an acquisition date range</li>
20
    <li>Limit to an acquisition date range</li>
21
</ul>
21
</ul>
22
</li>
22
</li>
23
    <li>Next choose what to skip when exporting
23
    <li>Next choose what to skip when exporting
24
<ul>
24
<ul>
25
	<li>By default items will be exported, if you would like to only export bibliographic data, check the 'Don't export items' box</li>
25
    <li>By default items will be exported, if you would like to only export bibliographic data, check the 'Don't export items' box</li>
26
	<li>To limit your export only to items from the library you're logged in as, check the 'Remove non-local items' box</li>
26
    <li>To limit your export only to items from the library you're logged in as, check the 'Remove non-local items' box</li>
27
	<li>You can also choose what fields you don't want to export. This can be handy if you're sharing your data, you can remove all local fields before sending your data to another library</li>
27
    <li>You can also choose what fields you don't want to export. This can be handy if you're sharing your data, you can remove all local fields before sending your data to another library</li>
28
</ul>
28
</ul>
29
</li>
29
</li>
30
    <li>Finally choose the file type and file name
30
    <li>Finally choose the file type and file name
31
<ul>
31
<ul>
32
	<li>Choose to export your data in marc or marcxml format</li>
32
    <li>Choose to export your data in marc or marcxml format</li>
33
	<li>Choose the name you want your file to save as</li>
33
    <li>Choose the name you want your file to save as</li>
34
</ul>
34
</ul>
35
</li>
35
</li>
36
    <li>Click 'Export bibliographic records'</li>
36
    <li>Click 'Export bibliographic records'</li>
37
- 

Return to bug 13040