Compare commits
9 commits
67766ffff5
...
6ba05b29c8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6ba05b29c8 | ||
|
|
5a87bf5800 | ||
|
|
faa0708e75 | ||
|
|
8d13fe178d | ||
|
|
a1f3586f37 | ||
|
|
ab65dfa30b | ||
|
|
d5cf112f6e | ||
|
|
5932abff16 | ||
|
|
ab447136b1 |
|
|
@ -1,22 +1,3 @@
|
||||||
"""
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
from .models import Recipe, Version, Ingredient
|
from .models import Recipe, Version, Ingredient
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,3 @@
|
||||||
"""
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from django.apps import AppConfig
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,3 @@
|
||||||
"""
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from django.forms import ModelForm, ValidationError, modelformset_factory, BooleanField
|
from django.forms import ModelForm, ValidationError, modelformset_factory, BooleanField
|
||||||
from .models import Recipe, Version, Ingredient
|
from .models import Recipe, Version, Ingredient
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,3 @@
|
||||||
"""
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,3 @@
|
||||||
<!--
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
-->
|
|
||||||
{% extends "base_main.html" %}
|
{% extends "base_main.html" %}
|
||||||
{% block title %}{{ recipe.title }}{% endblock %}
|
{% block title %}{{ recipe.title }}{% endblock %}
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,3 @@
|
||||||
<!--
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
-->
|
|
||||||
{% extends "base_main.html" %}
|
{% extends "base_main.html" %}
|
||||||
{% block title %}{{ recipe.title }}{% endblock %}
|
{% block title %}{{ recipe.title }}{% endblock %}
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,3 @@
|
||||||
<!--
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
-->
|
|
||||||
{% extends "base_main.html" %}
|
{% extends "base_main.html" %}
|
||||||
{% block title %}{{ recipe.title }}{% endblock %}
|
{% block title %}{{ recipe.title }}{% endblock %}
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,3 @@
|
||||||
<!--
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
-->
|
|
||||||
{% extends "base_main.html" %}
|
{% extends "base_main.html" %}
|
||||||
{% block title %}{{ recipe.title }}{% endblock %}
|
{% block title %}{{ recipe.title }}{% endblock %}
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,3 @@
|
||||||
<!--
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
-->
|
|
||||||
{% extends "base_main.html" %}
|
{% extends "base_main.html" %}
|
||||||
{% block title %}{{ recipe.title }}{% endblock %}
|
{% block title %}{{ recipe.title }}{% endblock %}
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,3 @@
|
||||||
<!--
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
-->
|
|
||||||
{% extends "base_main.html" %}
|
{% extends "base_main.html" %}
|
||||||
{% block title %}Recipes{% endblock %}
|
{% block title %}Recipes{% endblock %}
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,3 @@
|
||||||
<!--
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
-->
|
|
||||||
{% extends "base_main.html" %}
|
{% extends "base_main.html" %}
|
||||||
{% block title %}{{ recipe.title }}{% endblock %}
|
{% block title %}{{ recipe.title }}{% endblock %}
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,3 @@
|
||||||
"""
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
|
|
||||||
# Create your tests here.
|
# Create your tests here.
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,3 @@
|
||||||
"""
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from django.urls import path
|
from django.urls import path
|
||||||
from . import views
|
from . import views
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,3 @@
|
||||||
"""
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from django.shortcuts import render, get_object_or_404, redirect
|
from django.shortcuts import render, get_object_or_404, redirect
|
||||||
from .models import Recipe, Version, Ingredient
|
from .models import Recipe, Version, Ingredient
|
||||||
from .forms import RecipeForm, VersionForm, IngredientFormSet
|
from .forms import RecipeForm, VersionForm, IngredientFormSet
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,4 @@
|
||||||
"""
|
"""
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
|
|
||||||
|
|
||||||
ASGI config for stadlbauer project.
|
ASGI config for stadlbauer project.
|
||||||
|
|
||||||
It exposes the ASGI callable as a module-level variable named ``application``.
|
It exposes the ASGI callable as a module-level variable named ``application``.
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,3 @@
|
||||||
"""
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from django.contrib.auth.forms import UserCreationForm
|
from django.contrib.auth.forms import UserCreationForm
|
||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,4 @@
|
||||||
"""
|
"""
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
|
|
||||||
|
|
||||||
Django settings for stadlbauer project.
|
Django settings for stadlbauer project.
|
||||||
|
|
||||||
Generated by 'django-admin startproject' using Django 4.1.4.
|
Generated by 'django-admin startproject' using Django 4.1.4.
|
||||||
|
|
|
||||||
|
|
@ -1,23 +1,4 @@
|
||||||
"""
|
"""stadlbauer URL Configuration
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
|
|
||||||
|
|
||||||
stadlbauer URL Configuration
|
|
||||||
|
|
||||||
The `urlpatterns` list routes URLs to views. For more information please see:
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
||||||
https://docs.djangoproject.com/en/4.1/topics/http/urls/
|
https://docs.djangoproject.com/en/4.1/topics/http/urls/
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,3 @@
|
||||||
"""
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from .forms import SignupForm
|
from .forms import SignupForm
|
||||||
from django.shortcuts import render
|
from django.shortcuts import render
|
||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,4 @@
|
||||||
"""
|
"""
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
|
|
||||||
|
|
||||||
WSGI config for stadlbauer project.
|
WSGI config for stadlbauer project.
|
||||||
|
|
||||||
It exposes the WSGI callable as a module-level variable named ``application``.
|
It exposes the WSGI callable as a module-level variable named ``application``.
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,3 @@
|
||||||
<!--
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
-->
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,3 @@
|
||||||
<!--
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
-->
|
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% block head %}
|
{% block head %}
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,3 @@
|
||||||
<!--
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
-->
|
|
||||||
{% extends "base_main.html" %}
|
{% extends "base_main.html" %}
|
||||||
{% block title %}Barn{% endblock %}
|
{% block title %}Barn{% endblock %}
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,3 @@
|
||||||
<!--
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
-->
|
|
||||||
{% extends "base_main.html" %}
|
{% extends "base_main.html" %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,3 @@
|
||||||
<!--
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
-->
|
|
||||||
{% extends "base_main.html" %}
|
{% extends "base_main.html" %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,3 @@
|
||||||
<!--
|
|
||||||
Barn Web App - A collection of web-apps for my family's personal use,
|
|
||||||
including a recipe database.
|
|
||||||
Copyright © 2023 Benjamin Stadlbauer
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU Affero General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or (at
|
|
||||||
your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
This program comes with a copy of the GNU Affero General Public License
|
|
||||||
file at the root of this project.
|
|
||||||
-->
|
|
||||||
{% extends "base_main.html" %}
|
{% extends "base_main.html" %}
|
||||||
{% block title %}Profile {{ user.username }}{% endblock %}
|
{% block title %}Profile {{ user.username }}{% endblock %}
|
||||||
{% block main %}
|
{% block main %}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue