Commit d5cb7fb1 authored by Jansen Lao's avatar Jansen Lao
parents 81cc93a9 85f53d3d
Pipeline #1936 canceled with stages
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<div class="card-header"> <div class="card-header">
Customer Details: Customer Details:
</div> </div>
<form method="POST" action="{% url 'update_customer' pk=customer.pk %}">{% csrf_token %} <form method="POST" action="{% url 'update_customer' pk=customer.pk %}" style="padding-left: 5;padding-right: 5;">{% csrf_token %}
<div class="form-group"> <div class="form-group">
<label for="name"> Customer Name: </label> <label for="name"> Customer Name: </label>
<input type="text" class="form-control" id="customer_name" name="customer_name" value="{{customer.name}}" required> <input type="text" class="form-control" id="customer_name" name="customer_name" value="{{customer.name}}" required>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<div class="card-header"> <div class="card-header">
Food Details: Food Details:
</div> </div>
<form method="POST" action="{% url 'update_food' pk=food.pk %}">{% csrf_token %} <form method="POST" action="{% url 'update_food' pk=food.pk %}" style="padding-left: 5;padding-right: 5;">{% csrf_token %}
<div class="form-group"> <div class="form-group">
<label for="name"> Food Name: </label> <label for="name"> Food Name: </label>
<input type="text" class="form-control" id="food_name" name="food_name" value="{{food.name}}" required> <input type="text" class="form-control" id="food_name" name="food_name" value="{{food.name}}" required>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<div class="card-header"> <div class="card-header">
Order Details: Order Details:
</div> </div>
<form method="POST" action="{% url 'update_order' pk=order.pk %}">{% csrf_token %} <form method="POST" action="{% url 'update_order' pk=order.pk %}" style="padding-left: 5;padding-right: 5;">{% csrf_token %}
<div class="form-group"> <div class="form-group">
<label for="name"> Food: </label> <label for="name"> Food: </label>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment