Add simple tasks app.

This commit is contained in:
2023-07-12 20:28:00 +03:00
parent 15b73b0dbf
commit 7cb8cf4c54
14 changed files with 125 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}Simple TODO List{% endblock %}</title>
</head>
<body>
<div>
{% block content %}
{% endblock %}
</div>
</body>
</html>
+6
View File
@@ -0,0 +1,6 @@
{% extends 'base.html' %}
{% load static %}
{% block content %}
<center><h1>Tasks</h1></center>
{% endblock %}