Initial commit: Django inventory system
This commit is contained in:
12
myproject/templates/dashboard.html
Normal file
12
myproject/templates/dashboard.html
Normal file
@@ -0,0 +1,12 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}Панель управления{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="container">
|
||||
<div class="text-center">
|
||||
<h1 class="display-4">Добро пожаловать, {{ user.name|default:user.email }}!</h1>
|
||||
<p class="lead">Вы успешно вошли в систему.</p>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user