blob: c35dcdf1fea9eb1029f64c95bd788ee9704050b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<h1>Sample Data</h1>
{form legend="Populating the database with useful information"}
<input type="hidden" name="step" value="{$next_step}" />
<p>
It's recommended to select this option to add sample data to your installation of Bitweaver. The sample data contains useful information on how to use and navigate the appropriate packages. You will enter the site with a feel for what it might look like later, when populated with actual content. This simplifies theme selection and allows you to evaluate the product more easily.
</p>
{*
<p>
This page is only available during the first installation as it can cause problems when applied more than once.
</p>
so? *}
<div class="form-group">
{formlabel label="Packages that can be populated"}
{forminput}
{foreach from=$pumpList item=file key=package}
<label class="checkbox">
<input type="checkbox" name="pump_package[]" value="{$package}" checked="checked"/>{$package}
</label>
{foreachelse}
No packages with prepared data have been installed.
{/foreach}
{/forminput}
</div>
<div class="form-group">
{forminput}
{if $pumpList}
<input type="submit" class="btn btn-default" value="Populate my site" name="fSubmitDataPump" />
{/if}
<input type="submit" class="btn btn-default" value="Skip" name="skip" />
{/forminput}
</div>
{/form}
|