-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Füge Controller und Ansicht für die Batch-Löschung hinzu und aktualis…
…iere die Sidebar
- Loading branch information
1 parent
9748697
commit 624fe89
Showing
6 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* One Controller per layout view | ||
*/ | ||
|
||
// const _ = require('lodash'); | ||
const express = require('express'); | ||
const router = express.Router(); | ||
const authHelper = require('../helpers/authentication'); | ||
const { api } = require('../api'); | ||
// const moment = require('moment'); | ||
// moment.locale('de'); | ||
|
||
// secure routes | ||
router.use(authHelper.authChecker); | ||
|
||
router.get('/', function (req, res, next) { | ||
res.render('batch-deletion/batch-deletion', { | ||
title: 'Löschung', | ||
user: res.locals.currentUser, | ||
themeTitle: process.env.SC_NAV_TITLE || 'Schul-Cloud' | ||
}); | ||
|
||
}); | ||
|
||
|
||
|
||
module.exports = router; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
@import '../lib/colors.scss'; | ||
@import '../lib/bootstrap/scss/bootstrap-flex'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{{#extend "lib/loggedin"}} | ||
|
||
{{#content "page"}} | ||
<div> Hallo Welt </div> | ||
{{/content}} | ||
|
||
{{/extend}} |
Empty file.