mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2025-12-24 02:39:20 -05:00
fixed text outside of colum
This commit is contained in:
@@ -43,4 +43,4 @@ class RecipeFilter(django_filters.FilterSet):
|
||||
|
||||
class Meta:
|
||||
model = Recipe
|
||||
fields = ['name', 'keywords', 'ingredients']
|
||||
fields = ['name', 'keywords', 'ingredients', 'internal']
|
||||
|
||||
@@ -168,8 +168,10 @@
|
||||
{% if recipe.storage %}
|
||||
<div class="row">
|
||||
{% if recipe.internal %}
|
||||
<a href='#' onClick='openRecipe({{ recipe.id }})'
|
||||
class="d-print-none">{% trans 'View external recipe' %} <i class="fas fa-external-link-alt"></i></a>
|
||||
<div class="col col-12" style="margin-top: 2vh">
|
||||
<a href='#' onClick='openRecipe({{ recipe.id }})'
|
||||
class="d-print-none">{% trans 'View external recipe' %} <i class="fas fa-external-link-alt"></i></a>
|
||||
</div>
|
||||
{% else %}
|
||||
|
||||
<div class="col col-12" style="margin-top: 2vh">
|
||||
|
||||
Reference in New Issue
Block a user