restructure file system

This commit is contained in:
2025-05-25 12:20:02 +02:00
parent b4ac92af79
commit e853bb6a86
28 changed files with 29 additions and 29 deletions

View File

@@ -1,4 +1,4 @@
{% from 'macros.html' import format_size %}
{% from 'common/macros.html' import format_size %}
{% macro storage_overview(room_count, file_count, folder_count, total_size) %}
<div class="masonry-card">

View File

@@ -1,4 +1,4 @@
{% from 'macros.html' import format_size %}
{% from 'common/macros.html' import format_size %}
{% macro storage_usage(storage_by_type) %}
<div class="masonry-card">

View File

@@ -1,4 +1,4 @@
{% from 'macros.html' import format_size %}
{% from 'common/macros.html' import format_size %}
{% macro trash(trash_count, pending_deletion, oldest_trash_date, trash_size) %}
<div class="masonry-card">

View File

@@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "common/base.html" %}
{% block title %}Contacts - DocuPulse{% endblock %}

View File

@@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "common/base.html" %}
{% block content %}
<div class="container mx-auto px-4 py-8">

View File

@@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "common/base.html" %}
{% block head %}
{{ super() }}

View File

@@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "common/base.html" %}
{% block title %}Dashboard - DocuPulse{% endblock %}

View File

@@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "common/base.html" %}
{% block title %}Profile - DocuPulse{% endblock %}

View File

@@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "common/base.html" %}
{% block title %}Create Room - DocuPulse{% endblock %}

View File

@@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "common/base.html" %}
{% block title %}Edit Room - {{ room.name }}{% endblock %}

View File

@@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "common/base.html" %}
{% block title %}Room - DocuPulse{% endblock %}

View File

@@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "common/base.html" %}
{% block title %}Room Members - {{ room.name }}{% endblock %}

View File

@@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "common/base.html" %}
{% block title %}Rooms - DocuPulse{% endblock %}

View File

@@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "common/base.html" %}
{% block title %}Starred - DocuPulse{% endblock %}

View File

@@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "common/base.html" %}
{% block title %}Trash - DocuPulse{% endblock %}