diff --git a/recipes/templates/recipe.html b/recipes/templates/recipe.html
index 2b4de35..a500538 100644
--- a/recipes/templates/recipe.html
+++ b/recipes/templates/recipe.html
@@ -2,6 +2,9 @@
{% block title %}{{ recipe.title }}{% endblock %}
{% block main %}
{{ recipe.title }}
+{% if perms.recipes.add_recipe %}
+Add version
+{% endif %}
{% for v in versions %}
- {{ v.label }}
diff --git a/recipes/templates/recipes.html b/recipes/templates/recipes.html
index d5ee768..a60027c 100644
--- a/recipes/templates/recipes.html
+++ b/recipes/templates/recipes.html
@@ -2,6 +2,9 @@
{% block title %}Recipes{% endblock %}
{% block main %}
Recipes
+{% if perms.recipes.add_recipe %}
+Add recipe
+{% endif %}
{% if perms.recipes.view_recipe %}
{% for recipe in recipes %}
diff --git a/recipes/templates/version.html b/recipes/templates/version.html
index 8c926d4..45190c7 100644
--- a/recipes/templates/version.html
+++ b/recipes/templates/version.html
@@ -1,9 +1,12 @@
{% extends "base_main.html" %}
{% block title %}{{ recipe.title }}{% endblock %}
{% block main %}
-{{ version.recipe.title }} ({{ version.label }})
+{{ version.recipe.title }}{% if has_multiple_versions %} ({{ version.label }}){% endif %}
{% if has_multiple_versions %}
-
+Show all versions
+{% endif %}
+{% if perms.recipes.add_recipe %}
+Add version
{% endif %}
{% for i in ingredients %}