Fakultas Ilmu Komputer UI

Skip to content
Snippets Groups Projects
Commit 4b53493e authored by Malik Ismail's avatar Malik Ismail
Browse files

fix food category

parent dcd457a4
No related branches found
No related tags found
1 merge request!39fix food category
from django.shortcuts import render
from django.shortcuts import render, redirect
from django.db import connection
import random, string
def create_food_category(request):
......
......@@ -43,6 +43,8 @@ INSTALLED_APPS = [
"sirest",
"restaurant_category",
"order_transaction_courier",
"order_transaction_customer",
"food_category",
"ingredient",
"delivery_fee",
"food",
......
......@@ -30,8 +30,8 @@
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="dropdown10" data-bs-toggle="dropdown" aria-expanded="false">Order</a>
<ul class="dropdown-menu" aria-labelledby="dropdown10">
<li><a class="dropdown-item" href="#">Create Order</a></li>
<li><a class="dropdown-item" href="#">Ongoing Order</a></li>
<li><a class="dropdown-item" href="{% url 'order_transaction_customer:order1' %}">Create Order</a></li>
<li><a class="dropdown-item" href="{% url 'order_transaction_customer:read_order1' %}">Ongoing Order</a></li>
<li><a class="dropdown-item" href="#">Order History</a></li>
</ul>
</li>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment