Some changes are not shown
For a faster browsing experience, some files are collapsed by default.
config
config.js +3 -2
routes
routes-account.js +39 -34
routes-project.js +61 -5
views/DE
account
home.pug +3 -3
profile.pug +3 -3
security.pug +3 -3
services.pug +2 -2
project
addProjectOverview.pug +15 -10
project-simplified.pug +30 -25
project.html +125 -67
app.js +11 -1
package-lock.json +141 -112
package.json +1 -0
+ 3
- 2
@@ -9,8 +9,8 @@ module.exports = {
@@ -22,6 +22,7 @@ module.exports = {
+ 3
- 2
@@ -9,8 +9,8 @@ module.exports = {
@@ -22,6 +22,7 @@ module.exports = {
+ 39
- 34
@@ -62,12 +62,12 @@ module.exports = function (app, config, passport, i18n) {
@@ -104,8 +104,8 @@ module.exports = function (app, config, passport, i18n) {
@@ -118,14 +118,14 @@ module.exports = function (app, config, passport, i18n) {
@@ -133,7 +133,7 @@ module.exports = function (app, config, passport, i18n) {
@@ -149,7 +149,7 @@ module.exports = function (app, config, passport, i18n) {
@@ -183,7 +183,7 @@ module.exports = function (app, config, passport, i18n) {
@@ -213,7 +213,7 @@ module.exports = function (app, config, passport, i18n) {
@@ -223,7 +223,7 @@ module.exports = function (app, config, passport, i18n) {
@@ -238,7 +238,7 @@ module.exports = function (app, config, passport, i18n) {
@@ -250,14 +250,14 @@ module.exports = function (app, config, passport, i18n) {
@@ -269,27 +269,32 @@ module.exports = function (app, config, passport, i18n) {
@@ -318,19 +323,19 @@ module.exports = function (app, config, passport, i18n) {
@@ -348,7 +353,7 @@ module.exports = function (app, config, passport, i18n) {
@@ -406,7 +411,7 @@ module.exports = function (app, config, passport, i18n) {
@@ -416,7 +421,7 @@ module.exports = function (app, config, passport, i18n) {
@@ -455,7 +460,7 @@ module.exports = function (app, config, passport, i18n) {
@@ -463,10 +468,10 @@ module.exports = function (app, config, passport, i18n) {
@@ -507,9 +512,9 @@ module.exports = function (app, config, passport, i18n) {
+ 61
- 5
@@ -2,6 +2,8 @@ const methods = require('./methods')
@@ -104,7 +106,7 @@ module.exports = function (app) {
@@ -144,7 +146,7 @@ module.exports = function (app) {
@@ -160,13 +162,45 @@ module.exports = function (app) {
@@ -178,7 +212,7 @@ module.exports = function (app) {
@@ -186,6 +220,28 @@ module.exports = function (app) {
@@ -224,7 +280,7 @@ module.exports = function (app) {
+ 3
- 3
@@ -34,9 +34,9 @@ html(lang="de")
+ 3
- 3
@@ -35,8 +35,8 @@ html(lang="de")
@@ -47,7 +47,7 @@ html(lang="de")
+ 3
- 3
@@ -37,9 +37,9 @@ html(lang="de")
@@ -50,7 +50,7 @@ html(lang="de")
+ 2
- 2
@@ -34,8 +34,8 @@ html(lang="de")
+ 15
- 10
@@ -43,12 +43,12 @@ html(lang="de")
@@ -59,7 +59,10 @@ html(lang="de")
@@ -85,12 +88,11 @@ html(lang="de")
@@ -99,7 +101,10 @@ html(lang="de")
+ 30
- 25
@@ -7,35 +7,39 @@ html(lang="de")
@@ -44,4 +48,5 @@ html(lang="de")
\ No newline at end of file
+ 125
- 67
\ No newline at end of file
\ No newline at end of file
+ 11
- 1
@@ -8,6 +8,8 @@ const bodyParser = require('body-parser');
@@ -22,12 +24,20 @@ var app = express();
+ 141
- 112
Files with large changes are collapsed by default.