2019-01-04 01:29:30 +00:00
|
|
|
<script>
|
|
|
|
function createpage() {
|
|
|
|
var key = document.getElementById("input-key").value;
|
|
|
|
window.location.href = `/wiki/${key}`;
|
|
|
|
}
|
|
|
|
</script>
|
2018-09-13 22:49:22 +00:00
|
|
|
<div class="box">
|
|
|
|
<div class="upper-box">
|
|
|
|
Pagine Wiki
|
|
|
|
</div>
|
|
|
|
<div class="lower-box">
|
2019-01-08 18:43:26 +00:00
|
|
|
<ul class="multicolumn">
|
2018-09-13 22:49:22 +00:00
|
|
|
{% for page in wiki_pages %}
|
|
|
|
<li><a href="/wiki/{{ page.key }}">{{ page.key }}</a></li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2019-02-01 18:22:37 +00:00
|
|
|
{% if g.user %}
|
2019-01-06 18:29:06 +00:00
|
|
|
oppure... <input id="input-key" name="key" type="text" placeholder="Nome pagina" class="half"><button onclick="createpage()">Crea</button>
|
|
|
|
{% endif %}
|
2018-09-13 22:49:22 +00:00
|
|
|
</div>
|
|
|
|
</div>
|