mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-04 01:12:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			434 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			434 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
{% comment %}
 | 
						|
SPDX-License-Identifier: GPL-3.0-or-later
 | 
						|
{% endcomment %}
 | 
						|
{% load i18n crispy_forms_tags %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<div class="card bg-white mb-3">
 | 
						|
  <h3 class="card-header text-center">
 | 
						|
    HTML not finished <br>
 | 
						|
    {{ title }}
 | 
						|
  </h3>
 | 
						|
  <div class="card-body">
 | 
						|
    <p>name : {{ food.name }}</p>
 | 
						|
    <a href="{% url "food:basic_update" pk=food.pk %}">Update</a>
 | 
						|
  </div>
 | 
						|
</div>
 | 
						|
{% endblock %}
 |