mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-04-08 11:41:47 +00:00
Compare commits
9 Commits
898c5f03e8
...
ba444e8a9b
| Author | SHA1 | Date | |
|---|---|---|---|
| ba444e8a9b | |||
|
|
708a387774 | ||
|
|
af6fe582e0 | ||
|
|
905a144e7d | ||
| f6d1b48301 | |||
| 0e64021f01 | |||
| 2eb87a51f8 | |||
| 99132dd1c2 | |||
| 30fac1d1b9 |
@@ -23,7 +23,7 @@
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody id="item-table-body">
|
<tbody id="item-table-body">
|
||||||
{% for item in object.items.all %}
|
{% for item in object.items.all %}
|
||||||
{% include 'item_row.html' %}
|
{% include 'partials/item_row.html' %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
{% if auth or perms.RIGS.view_event %}
|
{% if auth or perms.RIGS.view_event %}
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
var gulp = require('gulp');
|
var gulp = require('gulp');
|
||||||
|
|
||||||
const terser = require('gulp-uglify');
|
const terser = require('gulp-uglify');
|
||||||
const sass = require('gulp-sass');
|
const sass = require('gulp-sass')(require('node-sass'));
|
||||||
const flatten = require('gulp-flatten');
|
const flatten = require('gulp-flatten');
|
||||||
const autoprefixer = require('autoprefixer')
|
const autoprefixer = require('autoprefixer')
|
||||||
const postcss = require('gulp-postcss')
|
const postcss = require('gulp-postcss')
|
||||||
@@ -15,8 +15,6 @@ const cssnano = require('cssnano');
|
|||||||
const con = require('gulp-concat');
|
const con = require('gulp-concat');
|
||||||
const gulpif = require('gulp-if');
|
const gulpif = require('gulp-if');
|
||||||
|
|
||||||
sass.compiler = require('node-sass');
|
|
||||||
|
|
||||||
function fonts(done) {
|
function fonts(done) {
|
||||||
return gulp.src('node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.*')
|
return gulp.src('node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.*')
|
||||||
.pipe(gulp.dest('pipeline/built_assets/fonts'))
|
.pipe(gulp.dest('pipeline/built_assets/fonts'))
|
||||||
|
|||||||
12300
package-lock.json
generated
12300
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
33
package.json
33
package.json
@@ -5,35 +5,36 @@
|
|||||||
"author": "Tom Price",
|
"author": "Tom Price",
|
||||||
"license": "Custom",
|
"license": "Custom",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@forevolve/bootstrap-dark": "^1.0.0-alpha.1075",
|
"@forevolve/bootstrap-dark": "^2.1.0",
|
||||||
"@fortawesome/fontawesome-free": "^5.15.2",
|
"@fortawesome/fontawesome-free": "^5.15.4",
|
||||||
"ajax-bootstrap-select": "^1.4.5",
|
"ajax-bootstrap-select": "^1.4.5",
|
||||||
"autocompleter": "^6.0.3",
|
"autocompleter": "^6.1.2",
|
||||||
"autoprefixer": "^9.8.0",
|
"autoprefixer": "^10.4.0",
|
||||||
"bootstrap": "^4.5.2",
|
"bootstrap": "^4.5.2",
|
||||||
"bootstrap-select": "^1.13.17",
|
"bootstrap-select": "^1.13.17",
|
||||||
"clipboard": "^2.0.6",
|
"clipboard": "^2.0.8",
|
||||||
"cssnano": "^4.1.10",
|
"cssnano": "^5.0.13",
|
||||||
"flatpickr": "^4.6.6",
|
"flatpickr": "^4.6.6",
|
||||||
"fullcalendar": "^5.3.2",
|
"fullcalendar": "^5.10.1",
|
||||||
"gulp": "^4.0.2",
|
"gulp": "^4.0.2",
|
||||||
"gulp-concat": "^2.6.1",
|
"gulp-concat": "^2.6.1",
|
||||||
"gulp-flatten": "^0.4.0",
|
"gulp-flatten": "^0.4.0",
|
||||||
"gulp-if": "^3.0.0",
|
"gulp-if": "^3.0.0",
|
||||||
"gulp-postcss": "^8.0.0",
|
"gulp-postcss": "^9.0.1",
|
||||||
"gulp-sass": "^4.1.0",
|
"gulp-sass": "^5.0.0",
|
||||||
"gulp-sourcemaps": "^2.6.5",
|
"gulp-sourcemaps": "^3.0.0",
|
||||||
"gulp-uglify": "^3.0.2",
|
"gulp-uglify": "^3.0.2",
|
||||||
"html5sortable": "^0.10.0",
|
"html5sortable": "^0.13.3",
|
||||||
"jquery": "^3.5.1",
|
"jquery": "^3.6.0",
|
||||||
"konami": "^1.6.2",
|
"konami": "^1.6.3",
|
||||||
"moment": "^2.27.0",
|
"moment": "^2.27.0",
|
||||||
"node-sass": "^5.0.0",
|
"node-sass": "^7.0.0",
|
||||||
"popper.js": "^1.16.1",
|
"popper.js": "^1.16.1",
|
||||||
"uglify-js": "^3.12.6"
|
"postcss": "^8.4.5",
|
||||||
|
"uglify-js": "^3.14.5"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"browser-sync": "^2.26.12"
|
"browser-sync": "^2.27.7"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"gulp": "gulp",
|
"gulp": "gulp",
|
||||||
|
|||||||
Reference in New Issue
Block a user