n_edit_move_all.py 679 B

12345678910111213
  1. from .tool.func import *
  2. async def edit_move_all():
  3. with get_db_connect() as conn:
  4. return easy_minify(flask.render_template(await skin_check(),
  5. imp = [await get_lang('multiple_move'), await wiki_set(), await wiki_custom(conn), wiki_css([0, 0])],
  6. data = '' + \
  7. '<div id="opennamu_edit_move_all"></div>' + \
  8. '<script defer src="/views/main_css/js/route/edit_move_all.js' + cache_v() + '"></script>' + \
  9. '<script>window.addEventListener("DOMContentLoaded", function() { opennamu_edit_move_all(); });</script>' + \
  10. '',
  11. menu = [['other', await get_lang('return')]]
  12. ))