aboutsummaryrefslogtreecommitdiff
path: root/cgi/templates/txt_board.en.html
diff options
context:
space:
mode:
authorLibravatar Choom 2022-12-11 01:49:21 -0300
committerLibravatar Choom 2022-12-11 02:18:41 -0300
commit7d31509782c87713e30cc7a400b9b9ee6f7eb0ff (patch)
treeffcebdbfcf942c3b39b5be110a1c7cd4c9ef9ef6 /cgi/templates/txt_board.en.html
parentf38017151f3efdd162cdba302bb8366afef66350 (diff)
downloadweabot-7d31509782c87713e30cc7a400b9b9ee6f7eb0ff.tar.gz
weabot-7d31509782c87713e30cc7a400b9b9ee6f7eb0ff.tar.xz
weabot-7d31509782c87713e30cc7a400b9b9ee6f7eb0ff.zip
Agregando div a respuestas
Agregando div a respuestas Agregando div a respuestas Agregando div a respuestas Agregando div a respuestas Agregando div a respuestas
Diffstat (limited to 'cgi/templates/txt_board.en.html')
-rw-r--r--cgi/templates/txt_board.en.html81
1 files changed, 52 insertions, 29 deletions
diff --git a/cgi/templates/txt_board.en.html b/cgi/templates/txt_board.en.html
index 8c94361..7f280b4 100644
--- a/cgi/templates/txt_board.en.html
+++ b/cgi/templates/txt_board.en.html
@@ -6,17 +6,18 @@
<?py #endif ?>
<div id="titlebox" class="outerbox">
<div class="innerbox">
- <div class="threadnav"><a href="#menu" title="Thread list">&#9632;</a><a href="#1" title="Next thread">&#9660;</a></div>
+ <div class="threadnav"><a href="#menu" title="Thread list">&#9632;</a><a href="#1" title="Top thread">&#9660;</a></div>
<h1>#{board_long}</h1>
<?py if postarea_desc: ?>
<div id="rules">#{postarea_desc}</div>
<?py #endif ?>
<form method="get" action="/tools/search.py" id="search"><input type="text" name="q" value="" /><input type="hidden" name="board" value="#{board}" /><input type="submit" value="Search active posts" /><input type="submit" value="Search archives" formaction="/tools/search_kako.py" /></form>
</div>
- <div class="innerbox links"><a href="/guia.html"><b>C&oacute;mo postear</b></a> | <a href="/faq.html"><b>Preguntas frecuentes</b></a> | <a href="/bai/"><b>Contacto</b></a>
- <?py if not force_css: ?>| <b>Estilo: </b><select id="styles">
+ <div class="innerbox links"><b>¿Eres nuevo?</b> <a href="/guia.html"><b>C&oacute;mo postear</b></a> | <a href="/faq.html"><b>Preguntas frecuentes</b></a> | <a href="/bai/"><b>Contacto</b></a>
+ <?py if not force_css: ?>| <b>Theme: </b><select id="styles">
<?py for title in txt_styles: ?><option value="#{title}">#{title}</option><?py #endfor ?></select>
- <?py #endif ?></div>
+ <?py #endif ?>
+</div>
</div>
<?py if postarea_extra: ?>
<div class="outerbox"><div class="innerbox">#{postarea_extra}</div></div>
@@ -24,7 +25,7 @@
<a name="menu"></a>
<?py if threads: ?>
<div id="threadbox" class="outerbox"><div class="innerbox">
- <div id="threadlinks"><a href="#{cgi_url}threadlist/#{board}"><b>View all threads</b></a> <a href="kako/"><b>View archive</b></a> <a href="#newthread"><b>Create new thread</b></a></div>
+ <div id="threadlinks"><a href="#{cgi_url}threadlist/#{board}"><b>All threads</b></a> <a href="kako/"><b>Archive</b></a> <a href="#newthread"><b>New thread</b></a></div>
<div id="threadlist">
<?py iter = 1 ?>
<?py for thread in threads: ?>
@@ -40,14 +41,16 @@
<?py titer = 1 ?>
<?py for thread in threads: ?>
<a name="#{titer}"></a>
-<div class="thread"><div class="innerbox">
+<div class="thread">
+<div class="innerbox">
<div class="threadnav"><a href="#menu" title="Thread list">&#9632;</a><a href="##{(titer-1) if titer>1 else len(threads)}" title="Previous thread">&#9650;</a><a href="##{(titer+1) if titer<len(threads) else '1'}" title="Next thread">&#9660;</a></div>
-<h2><small>[#{titer}:#{thread['length']}]</small><a href="#{boards_url}#{board}/read/#{thread['timestamp']}/#{'l50' if thread['length'] > 50 else ''}">#{thread['posts'][0]['subject']}</a></h2>
+<h2><span>[#{titer}:#{thread['length']}]</span><a href="#{boards_url}#{board}/read/#{thread['timestamp']}/#{'l50' if thread['length'] > 50 else ''}">#{thread['posts'][0]['subject']}</a></h2>
+<div class="replies">
<?py for post in thread['posts']: ?>
-<?py if post['IS_DELETED'] == '1': ?>
- <div class="reply deleted" id="p#{post['id']}" data-n="#{post['num']}"><h4>#{post['num']} : Post deleted by user.</h4></div>
-<?py elif post['IS_DELETED'] == '2': ?>
- <div class="reply deleted" id="p#{post['id']}" data-n="#{post['num']}"><h4>#{post['num']} : Post deleted by staff.</h4></div>
+<?py if post['IS_DELETED'] == 1: ?>
+ <div class="reply deleted" id="p#{post['id']}" data-n="#{post['num']}"><h4>#{post['num']} : Mensaje eliminado por usuario.</h4></div>
+<?py elif post['IS_DELETED'] == 2: ?>
+ <div class="reply deleted" id="p#{post['id']}" data-n="#{post['num']}"><h4>#{post['num']} : Mensaje eliminado por staff.</h4></div>
<?py else: ?>
<div class="reply#{' first' if post['num'] == 1 else ''}" id="p#{post['id']}" data-n="#{post['num']}">
<h4>#{post['num']} :
@@ -65,27 +68,30 @@
<?py #endif ?>
<?py #endif ?> : <span class="date" data-unix="#{post['timestamp']}">#{post['timestamp_formatted']}</span></h4>
<?py if post['file']: ?>
- <a href="/#{board}/src/#{post['file']}" target="_blank" class="thumb"><img src="#{'/static/' if post['thumb'].startswith('mime') else ('/'+board+'/thumb/')}#{post['thumb']}" width="#{post['thumb_width']}" height="#{post['thumb_height']}" title="${post['file']}-(${post['file_size']} B)" /></a>
+ <a href="/#{board}/src/#{post['file']}" target="_blank" class="thumb">
+ <img src="#{'/static/' if post['thumb'].startswith('mime') else ('/'+board+'/thumb/')}#{post['thumb']}" width="#{post['thumb_width']}" height="#{post['thumb_height']}" title="${post['file']}-(${post['file_size']} B)" />
+ </a>
<?py #endif ?>
<div class="msg">
#{post['message']}
<?py if post['shortened']: ?>
- <div class="abbrev">(Post is too long... Click <a href="#{boards_url}#{board}/read/#{thread['timestamp']}/#{post['num']}">here</a> to view the whole post.)</div>
+ <div class="abbrev">(Post is too long... Click <a href="#{boards_url}#{board}/read/#{thread['timestamp']}/#{post['num']}">here</a> to view.)</div>
<?py #endif ?>
</div>
</div>
<?py #endif ?>
<?py #endfor ?>
-<?py if thread['locked'] != '1': ?>
+</div>
+<?py if not thread['locked']: ?>
<form id="postform#{thread['id']}" class="postform" action="#{cgi_url}post" method="post" enctype="multipart/form-data">
<input type="hidden" name="board" value="#{board}" /><input type="hidden" name="parent" value="#{thread['id']}" /><input type="hidden" name="password" value="" />
- <div style="display:none"><input type="text" name="name" size="15" /> <input type="text" name="email" size="15" /></div>
- <span><input type="submit" value="Reply" /></span> <span><span>Name:&nbsp;</span><input type="text" name="fielda" size="15" /><span>&nbsp;E-mail:&nbsp;</span><input type="text" name="fieldb" size="15" /></span><br />
+ <div style="display:none;"><input type="text" name="name" size="15" /> <input type="text" name="email" size="15" /></div>
+ <input type="submit" value="Responder" /> <span><span>Name: </span><input type="text" name="fielda" size="15" /> <span>E-mail: </span><input type="text" name="fieldb" size="15" /></span>
<div class="formpad">
<textarea name="message" cols="70" rows="5"></textarea>
<?py if allow_image_replies: ?><br /><input type="file" name="file" /><?py #endif ?>
<?py else: ?>
-<form class="postform"><div class="locked">This thread has been closed. You cannot post in it any longer.</div><div class="formpad">
+<form class="postform"><div class="locked">Thread has been closed. You cannot reply anymore.</div><div class="formpad">
<?py #endif ?>
<div class="threadlinks">
<a href="#{boards_url}#{board}/read/#{thread['timestamp']}/"><b>Entire thread</b></a>
@@ -98,8 +104,10 @@
<a href="#menu"><b>Thread list</b></a>
<a href="#newthread"><b>New thread</b></a>
</div>
-</div></form>
-</div></div>
+</div>
+</form>
+</div>
+</div>
<?py titer += 1 ?>
<?py #endfor ?>
<?py #endif ?>
@@ -115,23 +123,38 @@
<tr>
<td class="pblock">Subject:</td>
<td colspan="3" style="width:100%"><input type="text" name="subject" size="50" maxlength="100" /></td>
- <td><input type="submit" value="Create new thread" /></td>
+ <td><input type="submit" value="Crear nuevo hilo" /></td>
+ </tr>
+ <tr>
+ <td class="pblock">Name:</td>
+ <td><input type="text" name="fielda" /></td>
+ <td class="pblock">E-mail:</td>
+ <td><input type="text" name="fieldb" /></td>
+ <td><input type="button" name="preview" value="Previsualizar" /></td>
+ </tr>
+ <tr id="options" style="display:none;">
+ <td></td>
+ <td colspan="4"><div id="preview0" class="msg"></div></td>
</tr>
<tr>
- <td class="pblock">Name:</td><td><input type="text" name="fielda" /></td>
- <td class="pblock">E-mail:</td><td><input type="text" name="fieldb" /></td>
- <td><input type="button" name="preview" value="Preview" /></td>
+ <td class="pblock">Body:</td>
+ <td colspan="4"><textarea name="message" cols="70" rows="10"></textarea></td>
</tr>
- <tr id="options" style="display:none"><td></td><td colspan="4"><div id="preview0" class="msg"></div></td></tr>
- <tr><td class="pblock">Body:</td><td colspan="4"><textarea name="message" cols="70" rows="10"></textarea></td></tr>
<?py if allow_images: ?>
- <tr><td class="pblock">File:</td><td colspan="4"><input type="file" name="file" /></td></tr>
+ <tr>
+ <td class="pblock">File:</td>
+ <td colspan="4"><input type="file" name="file" /></td>
+ </tr>
<?py #endif ?>
</table>
- <div style="display:none">Trampa: <input type="text" name="name" maxlength="50" /> <input type="text" name="email" maxlength="50" /></div>
+ <div style="display:none;">Trampa: <input type="text" name="name" maxlength="50" /> <input type="text" name="email" maxlength="50" /></div>
</form>
</div>
</div>
-<center id="footer"><a href="/" target="_top">Bienvenido a Internet BBS/IB</a> weabot.py <?py include('templates/revision.html') ?> + FastCGI + tenjin<br />それがBaIクオリティー!</center>
+<center id="footer">
+ <a href="/" target="_top">Bienvenido a Internet BBS/IB</a> weabot.py <?py include('templates/revision.html') ?> + FastCGI + tenjin
+ <br />
+ ゆっくりしていってね…
+</center>
</body>
-</html> \ No newline at end of file
+</html>