Distributed Syncronize System - DSS
{% if current_user.is_authenticated %}
{% if current_user.role.name in ['Admin', 'Uploader'] %}
📥 Upload
{% endif %}
📜 Hasil Konversi
{% if current_user.role.name == 'Admin' %}
👑 Admin User
{% endif %}
Halo,
{{ current_user.username }}
({{ current_user.role.name }})
Logout
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %} {% block content %}{% endblock %}