{% extends "bootstrap/base.html" %} {% block title %}Database Setup - MOTM Admin{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}
Configure and initialize the database for the MOTM application.
Database Type: {{ current_config.database_type|title }}
{% if current_config.database_type == 'sqlite' %}Database File: {{ current_config.sqlite_database_path }}
{% elif current_config.database_type == 'mysql' %}Host: {{ current_config.mysql_host }}:{{ current_config.mysql_port }}
Database: {{ current_config.mysql_database }}
Username: {{ current_config.mysql_username }}
{% elif current_config.database_type == 'postgresql' %}Host: {{ current_config.postgres_host }}:{{ current_config.postgres_port }}
Database: {{ current_config.postgres_database }}
Username: {{ current_config.postgres_username }}
{% endif %}