diff --git a/.idea/encodings.xml b/.idea/encodings.xml
deleted file mode 100644
index 97626ba45..000000000
--- a/.idea/encodings.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
deleted file mode 100644
index cfb228678..000000000
--- a/.idea/inspectionProfiles/Project_Default.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/jsLibraryMappings.xml b/.idea/jsLibraryMappings.xml
deleted file mode 100644
index 6150fb772..000000000
--- a/.idea/jsLibraryMappings.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/README.md b/README.md
index 1ff1df91a..09d018dc0 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,16 @@
-# Recipies
-Recipes is a Django application that allows tagging of arbitrary numbers of recipes (or in fact any other file) in a storage backend.
-It also allows the easy creation of recipes directly on the page.
-Currently the only supported storage backend is dropbox, but this can easily be changed as the system is modular and
-already has fields to support different backends.
+# Recipes
+Recipes is a django application to manage, tag and search recipes using either built in models or external storage providers hosting PDF's, Images or other files.
+
+
+
+Features
+
+- Sync files with Dropbox and Nextcloud (more can easily be added)
+- Create and search for tags, assign them in batch to all files matching certain filters
+- Create recipes locally within a nice, standardized webinterface
+- Share recipes with friends and comment on them to suggest or remember changes you made
+
+This application is meant for people with a collection of recipes they want to share with family and friends or simply store them in a nicely organized way. A basic permission System will be implemented but this is not meant as a public website.
## Usage
Most things should be straight forward but there are some more complicated things.
@@ -21,8 +29,7 @@ Then enter the path you want to monitor starting at the storage root (e.g. `/Fol
##### Syncing Data
To sync the recipes app with the storage backends press `Sync now` under `Manage Data >> Configure Sync`.
##### Import Recipes
-All files found by the sync can be found under `Manage Data >> Import recipes`. There you can either import all at once without
-modifying them or import one by one, adding Category and Tags while importing.
+All files found by the sync can be found under `Manage Data >> Import recipes`. There you can either import all at once without modifying them or import one by one, adding Category and Tags while importing.
##### Batch Edit
If you have many untagged recipes you may want to edit them all at once. For this go to
`Manage Data >> Batch Edit`. Enter a word which should be contained in the recipe name and select the tags you want to apply.
@@ -57,5 +64,4 @@ To start developing:
Pull Requests and ideas are welcome, feel free to contribute in any way.
## License
-This project is licensed under the MIT license. Even though it is not required to publish derivatives i highly encourage
-pushing changes upstream and letting people profit from any work done on this project.
\ No newline at end of file
+This project is licensed under the MIT license. Even though it is not required to publish derivatives i highly encourage pushing changes upstream and letting people profit from any work done on this project.
\ No newline at end of file
diff --git a/cookbook/migrations/0012_auto_20191118_1251.py b/cookbook/migrations/0012_auto_20191118_1251.py
new file mode 100644
index 000000000..04874a637
--- /dev/null
+++ b/cookbook/migrations/0012_auto_20191118_1251.py
@@ -0,0 +1,18 @@
+# Generated by Django 2.2.7 on 2019-11-18 11:51
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('cookbook', '0011_recipe_time'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='recipe',
+ name='time',
+ field=models.IntegerField(default=0),
+ ),
+ ]
diff --git a/cookbook/models.py b/cookbook/models.py
index c3347fbd3..e2b04c583 100644
--- a/cookbook/models.py
+++ b/cookbook/models.py
@@ -61,7 +61,7 @@ class Recipe(models.Model):
file_path = models.CharField(max_length=512, default="")
link = models.CharField(max_length=512, default="")
keywords = models.ManyToManyField(Keyword, blank=True)
- time = models.IntegerField(blank=True)
+ time = models.IntegerField(default=0)
internal = models.BooleanField(default=False)
created_by = models.ForeignKey(User, on_delete=models.PROTECT)
created_at = models.DateTimeField(auto_now_add=True)
diff --git a/cookbook/templates/recipe_view.html b/cookbook/templates/recipe_view.html
index 452599e0b..5a49b8ce4 100644
--- a/cookbook/templates/recipe_view.html
+++ b/cookbook/templates/recipe_view.html
@@ -86,8 +86,7 @@