added basic pages + task import

This commit is contained in:
2025-01-26 00:53:17 +01:00
parent 6810fc976a
commit cd604e39a0
23 changed files with 425 additions and 6 deletions

11
templates/parents.html Normal file
View File

@ -0,0 +1,11 @@
{% extends "list.html" %}
{% load static %}
{% block title %}Parents{% endblock %}
{% block element_name %}parent{% endblock %}
{% block element %}
<div class="name">{{ element.name }}</div>
<div class="project_num">({{ element.project_num }})</div>
{% endblock %}
{% block actions %}
<button class="edit">Edit</button>
{% endblock %}