2025-01-26 00:53:17 +01:00
|
|
|
{% extends "list.html" %}
|
|
|
|
{% load static %}
|
|
|
|
{% block title %}Parents{% endblock %}
|
|
|
|
{% block element_name %}parent{% endblock %}
|
2025-02-02 15:33:11 +01:00
|
|
|
{% block extra-head %}
|
2025-02-02 18:47:35 +01:00
|
|
|
<link rel="stylesheet" href="{% static "parents.css" %}">
|
2025-02-02 15:33:11 +01:00
|
|
|
<script src="{% static "parents.js" %}"></script>
|
|
|
|
{% endblock %}
|
2025-02-02 18:47:35 +01:00
|
|
|
{% block extra-class %}{% if element.is_productive %}productive{% endif %}{% endblock %}
|
2025-01-26 00:53:17 +01:00
|
|
|
{% 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 %}
|