diff options
author | bai | 2019-03-29 09:10:35 +0000 |
---|---|---|
committer | bai | 2019-03-29 09:10:35 +0000 |
commit | 429433200998613b1c955034f8a90c6ca2864f4c (patch) | |
tree | a2e5762d1fd5c46fac8a1d60a7f0cf52c537e91f /cgi/templates/manage/home.html | |
parent | 825474f137b80923754de6821146560f3dfca501 (diff) | |
download | weabot-429433200998613b1c955034f8a90c6ca2864f4c.tar.gz weabot-429433200998613b1c955034f8a90c6ca2864f4c.tar.xz weabot-429433200998613b1c955034f8a90c6ca2864f4c.zip |
Agregados archivos faltantes
Diffstat (limited to 'cgi/templates/manage/home.html')
-rw-r--r-- | cgi/templates/manage/home.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/cgi/templates/manage/home.html b/cgi/templates/manage/home.html new file mode 100644 index 0000000..52a206d --- /dev/null +++ b/cgi/templates/manage/home.html @@ -0,0 +1,38 @@ +<?py include('templates/base_top.html') ?> +<?py include('templates/manage/menu.html') ?> +<center> +<div class="replymode">Opciones de home</div> +<form action="#{cgi_url}manage/home" method="post"> +<table> +<tr> + <td class="postblock">TÃtulo del sitio</td> + <td><input type="text" name="title" value="#{home['title']}" maxlength="50" /></td> +</tr> +<tr> + <td class="postblock">Eslogan</td> + <td><input type="text" name="slogan" value="#{home['slogan']}" maxlength="100" /></td> +</tr> +<tr> + <td class="postblock">Noticias a mostrar</td> + <td><input type="text" name="news" value="#{home['news']}" maxlength="2"/></td> +</tr> +<tr> + <td class="postblock">Hilos a mostrar</td> + <td><input type="text" name="threads" value="#{home['threads']}" maxlength="2"/></td> +</tr> +<tr> + <td class="postblock">Largo de hilos</td> + <td><input type="text" name="length" value="#{home['length']}" maxlength="3"/></td> +</tr> +<tr> + <td class="postblock">Modo mantención</td> + <td><input type="checkbox" name="maintenance" id="maint" value="1"#{checked(home['maintenance'] == '1')} /><label for="maint"></label></td> +</tr> +</table> +<br /> +<hr /> +<input type="submit" value="Guardar cambios" /> +</form> +</center> +<hr /> +<?py include('templates/base_bottom.html') ?> |