ab4eb7414c
Users need to register, login, logout and reset their password.
11 lines
284 B
HTML
11 lines
284 B
HTML
{% load i18n %}{% get_current_language as LANGUAGE_CODE %}<!doctype html>
|
|
<html lang="{{ LANGUAGE_CODE }}">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
</head>
|
|
<body>
|
|
<div class="container" id="main-content">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|