{% extends "admin/base.html" %}
{% load i18n admin_static %}
{% block userlinks %}
Outlet:
{% if user.restaurant.selected_outlet != None %}
{{ user.restaurant.selected_outlet }}
{% else %}
Belum dipilih
{% endif %}
Pilih Outlet
{% if user.is_superuser %}
Lihat semua
{% endif %}
{% if user.has_usable_password %}
{% trans 'Change password' %} /
{% endif %}
{% trans 'Log out' %}
{% endblock %}