$templates.shared.doctype
{=
include "templates.shared.util.build_database_info_table";
string profile_name = internal.profile_name;
=}
{=
# -----------------
# get database info
# -----------------
get_database_info(profile_name, "volatile.database_info");
node db_info = "volatile.database_info";
build_database_info_table(db_info);
# --------------------------------
# "Start rebuild database" section
# --------------------------------
# if no database task is active or if the database has not just been build show the "start rebuild database" section
if (node_exists("volatile.show_start_rebuild_database")) then (
'
\n';
);
# -----------------------------------
# "rebuild database complete" section
# -----------------------------------
# if this page is called from task.cfv then show "rebuild database completed" info
if (node_exists("volatile.database_operation_completed")) then (
'
\n';
'\n';
'\n';
'\n';
'' . lang_admin.database.info.database_operation_completed_info . ' |
\n';
'
\n';
);
=}