blob: f81933f874bd7bdf94c384f3c92d7342e89fe5d3 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<aside class="home">
<details class="hidephone">
<summary>Import page as file</summary>
<form action="<?= $this->url('artupload') ?>" method="post" enctype="multipart/form-data">
<input type="file" name="pagefile" id="pagefile" accept=".json">
<label for="pagefile">JSON Page file</label>
<input type="hidden" name="erase" value="0">
<input type="hidden" name="datecreation" value="0">
</br>
<input type="text" name="id" id="id" placeholder="new id (optionnal)">
<label for="id">change ID</label>
</br>
<input type="checkbox" name="datecreation" id="datecreation" value="1">
<label for="datecreation">Reset date creation as now</label>
</br>
<input type="checkbox" name="author" id="author" value="1">
<label for="author">Reset author(s) as just you</label>
</br>
<input type="checkbox" name="erase" id="erase" value="1">
<label for="erase">Replace if already existing</label>
</br>
<input type="submit" value="upload">
</form>
</details>
<details class="hidephone">
<summary>Columns</summary>
<form action="<?= $this->url('homecolumns') ?>" method="post">
<ul>
<?php
foreach (Model::COLUMNS as $col) { ?>
<li>
<input type="checkbox" name="columns[]" value="<?= $col ?>" id="col_<?= $col ?>" <?= in_array($col, $user->columns()) ? 'checked' : '' ?>>
<label for="col_<?= $col ?>"><?= $col ?></label>
</li>
<?php } ?>
</ul>
<input type="submit" value="update columns">
</form>
</details>
<details class="hidephone">
<summary>Actions</summary>
<form action="<?= $this->url('homerenderall') ?>" method="post">
Render all pages
</br>
<input type="submit" value="renderall">
</form>
</details>
</aside>
|