diff options
author | Señor X | 2019-04-05 03:50:25 -0300 |
---|---|---|
committer | Señor X | 2019-04-05 03:52:47 -0300 |
commit | 6e2a0f64d910b6ccb4d09846ea313e3f308fd747 (patch) | |
tree | e9752724539336bdf9c14d3af89c2af52ea36ded /cgi/templates/board.html | |
parent | 7d62e3d0ec4f96d6708e0946dffd81bded9f0aca (diff) | |
download | weabot-6e2a0f64d910b6ccb4d09846ea313e3f308fd747.tar.gz weabot-6e2a0f64d910b6ccb4d09846ea313e3f308fd747.tar.xz weabot-6e2a0f64d910b6ccb4d09846ea313e3f308fd747.zip |
Moviendo funciones de hora local de weabot.js y weabotxt.js a shobon.js + Delegación
Diffstat (limited to 'cgi/templates/board.html')
-rw-r--r-- | cgi/templates/board.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cgi/templates/board.html b/cgi/templates/board.html index 09ed67d..0583230 100644 --- a/cgi/templates/board.html +++ b/cgi/templates/board.html @@ -184,7 +184,7 @@ <?py #endif ?> <span class="date" data-unix="#{post['timestamp']}">#{post['timestamp_formatted']}</span> <?py if replythread: ?> - <span class="reflink"><a href="##{post['id']}">No.</a><a href="#" class="postid">#{post['id']}</a></span> + <span class="reflink"><a href="##{post['id']}">No.</a><a href="#" class="num">#{post['id']}</a></span> <?py else: ?> <span class="reflink"><a href="#{boards_url}#{board}/res/#{post['parentid'] if post['parentid'] != "0" else post['id']}.html##{post['id']}">No.</a><a href="#{boards_url}#{board}/res/#{post['parentid'] if post['parentid'] != "0" else post['id']}.html#i#{post['id']}">#{post['id']}</a></span> <?py #endif ?> @@ -262,7 +262,7 @@ <div class="pg">#{pagenav}</div> <?py #endif ?> <?py if not force_css: ?> - <div class="selector"><b>Apariencia:</b><select id="styles"> + <div class="selector"><b>Estilo:</b><select id="styles"> <?py for title in styles: ?><option value="#{title}">#{title}</option><?py #endfor ?> </select> </div> |