diff --git a/.gitignore b/.gitignore
index c824089091f1d7bd36b8d5b13b9975928b5afb1b..b667f70a283368796d97696775f8977cded41c43 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,9 @@
 # Disable virtualenv
 env/*
 
+#npm 
+node_modules/
+
 # Folder with db statics (dev mode)
 smash/~/
 
diff --git a/smash/package-lock.json b/smash/package-lock.json
new file mode 100644
index 0000000000000000000000000000000000000000..9ea87c197a2a87251ed6baf4cfa1a305fd7be5cf
--- /dev/null
+++ b/smash/package-lock.json
@@ -0,0 +1,18 @@
+{
+  "name": "smasch",
+  "version": "1.0.0",
+  "lockfileVersion": 1,
+  "requires": true,
+  "dependencies": {
+    "awesomplete": {
+      "version": "1.1.5",
+      "resolved": "https://registry.npmjs.org/awesomplete/-/awesomplete-1.1.5.tgz",
+      "integrity": "sha512-UFw1mPW8NaSECDSTC36HbAOTpF9JK2wBUJcNn4MSvlNtK7SZ9N72gB+ajHtA6D1abYXRcszZnBA4nHBwvFwzHw=="
+    },
+    "jquery": {
+      "version": "3.5.1",
+      "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.5.1.tgz",
+      "integrity": "sha512-XwIBPqcMn57FxfT+Go5pzySnm4KWkT1Tv7gjrpT1srtf8Weynl6R273VJ5GjkRb51IzMp5nbaPjJXMWeju2MKg=="
+    }
+  }
+}
diff --git a/smash/package.json b/smash/package.json
new file mode 100644
index 0000000000000000000000000000000000000000..45772dd69325ae98106f29aa81d3b9f2a56675e0
--- /dev/null
+++ b/smash/package.json
@@ -0,0 +1,15 @@
+{
+  "name": "smasch",
+  "version": "1.0.0",
+  "description": "",
+  "main": "index.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "author": "",
+  "license": "ISC",
+  "dependencies": {
+    "awesomplete": "^1.1.5",
+    "jquery": "^3.5.1"
+  }
+}
diff --git a/smash/smash/settings.py b/smash/smash/settings.py
index 629da1caaba572aa52583a75c58c1e4d8bec0d2f..1c11416bb4ecf3fae18e6c7e68f0717ab1fedc43 100644
--- a/smash/smash/settings.py
+++ b/smash/smash/settings.py
@@ -112,6 +112,17 @@ AUTH_PASSWORD_VALIDATORS = [
 INTERNAL_IPS = [
     '127.0.0.1'
 ]
+STATICFILES_FINDERS = [
+    'django.contrib.staticfiles.finders.FileSystemFinder',
+    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
+    'npm.finders.NpmFinder',
+]
+
+NPM_FILE_PATTERNS = {
+    'jquery': ['dist/jquery.min.js'],
+    'awesomplete': ['awesomplete.css', 'awesomplete.css.map', 'awesomplete.min.js', 'awesomplete.min.js.map']
+}
+
 
 STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.ManifestStaticFilesStorage'
 
diff --git a/smash/web/static/AdminLTE/plugins/awesomplete/LICENSE b/smash/web/static/AdminLTE/plugins/awesomplete/LICENSE
deleted file mode 100644
index ee7698757ae3b051e355508114132bfca8f41e4e..0000000000000000000000000000000000000000
--- a/smash/web/static/AdminLTE/plugins/awesomplete/LICENSE
+++ /dev/null
@@ -1,22 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2015 Lea Verou
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
diff --git a/smash/web/static/AdminLTE/plugins/awesomplete/awesomplete.css b/smash/web/static/AdminLTE/plugins/awesomplete/awesomplete.css
deleted file mode 100644
index d8fed9dc756c065433a86ff8ef674e0b78b1b647..0000000000000000000000000000000000000000
--- a/smash/web/static/AdminLTE/plugins/awesomplete/awesomplete.css
+++ /dev/null
@@ -1,104 +0,0 @@
-.awesomplete [hidden] {
-    display: none;
-}
-
-.awesomplete .visually-hidden {
-    position: absolute;
-    clip: rect(0, 0, 0, 0);
-}
-
-.awesomplete {
-    /* display: inline-block; */
-    position: relative;
-}
-
-.awesomplete > input {
-    display: block;
-}
-
-.awesomplete > ul {
-    position: absolute;
-    left: 0;
-    z-index: 1;
-    min-width: 100%;
-    box-sizing: border-box;
-    list-style: none;
-    padding: 0;
-    margin: 0;
-    background: #fff;
-}
-
-.awesomplete > ul:empty {
-    display: none;
-}
-
-.awesomplete > ul {
-	border-radius: .3em;
-	margin: .2em 0 0;
-	background: hsla(0,0%,100%,.9);
-	background: linear-gradient(to bottom right, white, hsla(0,0%,100%,.8));
-	border: 1px solid rgba(0,0,0,.3);
-	box-shadow: .05em .2em .6em rgba(0,0,0,.2);
-	text-shadow: none;
-}
-
-@supports (transform: scale(0)) {
-	.awesomplete > ul {
-		transition: .3s cubic-bezier(.4,.2,.5,1.4);
-		transform-origin: 1.43em -.43em;
-	}
-
-	.awesomplete > ul[hidden],
-	.awesomplete > ul:empty {
-		opacity: 0;
-		transform: scale(0);
-		display: block;
-		transition-timing-function: ease;
-	}
-}
-
-	/* Pointer */
-	.awesomplete > ul:before {
-		content: "";
-		position: absolute;
-		top: -.43em;
-		left: 1em;
-		width: 0; height: 0;
-		padding: .4em;
-		background: white;
-		border: inherit;
-		border-right: 0;
-		border-bottom: 0;
-		-webkit-transform: rotate(45deg);
-		transform: rotate(45deg);
-	}
-
-	.awesomplete > ul > li {
-		position: relative;
-		padding: .2em .5em;
-		cursor: pointer;
-	}
-
-	.awesomplete > ul > li:hover {
-		background: hsl(200, 40%, 80%);
-		color: black;
-	}
-
-	.awesomplete > ul > li[aria-selected="true"] {
-		background: hsl(205, 40%, 40%);
-		color: white;
-	}
-
-		.awesomplete mark {
-			background: hsl(65, 100%, 50%);
-		}
-
-		.awesomplete li:hover mark {
-			background: hsl(68, 100%, 41%);
-		}
-
-		.awesomplete li[aria-selected="true"] mark {
-			background: hsl(86, 100%, 21%);
-			color: inherit;
-		}
-/*# sourceMappingURL=awesomplete.css.map */
diff --git a/smash/web/static/AdminLTE/plugins/awesomplete/awesomplete.css.map b/smash/web/static/AdminLTE/plugins/awesomplete/awesomplete.css.map
deleted file mode 100644
index 97dafae135ab79fdcdfe5f5720371f2edad52903..0000000000000000000000000000000000000000
--- a/smash/web/static/AdminLTE/plugins/awesomplete/awesomplete.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["awesomplete.base.css","awesomplete.theme.css"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACjCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","file":"awesomplete.css","sourcesContent":[".awesomplete [hidden] {\n    display: none;\n}\n\n.awesomplete .visually-hidden {\n    position: absolute;\n    clip: rect(0, 0, 0, 0);\n}\n\n.awesomplete {\n    display: inline-block;\n    position: relative;\n}\n\n.awesomplete > input {\n    display: block;\n}\n\n.awesomplete > ul {\n    position: absolute;\n    left: 0;\n    z-index: 1;\n    min-width: 100%;\n    box-sizing: border-box;\n    list-style: none;\n    padding: 0;\n    margin: 0;\n    background: #fff;\n}\n\n.awesomplete > ul:empty {\n    display: none;\n}\n",".awesomplete > ul {\n\tborder-radius: .3em;\n\tmargin: .2em 0 0;\n\tbackground: hsla(0,0%,100%,.9);\n\tbackground: linear-gradient(to bottom right, white, hsla(0,0%,100%,.8));\n\tborder: 1px solid rgba(0,0,0,.3);\n\tbox-shadow: .05em .2em .6em rgba(0,0,0,.2);\n\ttext-shadow: none;\n}\n\n@supports (transform: scale(0)) {\n\t.awesomplete > ul {\n\t\ttransition: .3s cubic-bezier(.4,.2,.5,1.4);\n\t\ttransform-origin: 1.43em -.43em;\n\t}\n\t\n\t.awesomplete > ul[hidden],\n\t.awesomplete > ul:empty {\n\t\topacity: 0;\n\t\ttransform: scale(0);\n\t\tdisplay: block;\n\t\ttransition-timing-function: ease;\n\t}\n}\n\n\t/* Pointer */\n\t.awesomplete > ul:before {\n\t\tcontent: \"\";\n\t\tposition: absolute;\n\t\ttop: -.43em;\n\t\tleft: 1em;\n\t\twidth: 0; height: 0;\n\t\tpadding: .4em;\n\t\tbackground: white;\n\t\tborder: inherit;\n\t\tborder-right: 0;\n\t\tborder-bottom: 0;\n\t\t-webkit-transform: rotate(45deg);\n\t\ttransform: rotate(45deg);\n\t}\n\n\t.awesomplete > ul > li {\n\t\tposition: relative;\n\t\tpadding: .2em .5em;\n\t\tcursor: pointer;\n\t}\n\t\n\t.awesomplete > ul > li:hover {\n\t\tbackground: hsl(200, 40%, 80%);\n\t\tcolor: black;\n\t}\n\t\n\t.awesomplete > ul > li[aria-selected=\"true\"] {\n\t\tbackground: hsl(205, 40%, 40%);\n\t\tcolor: white;\n\t}\n\t\n\t\t.awesomplete mark {\n\t\t\tbackground: hsl(65, 100%, 50%);\n\t\t}\n\t\t\n\t\t.awesomplete li:hover mark {\n\t\t\tbackground: hsl(68, 100%, 41%);\n\t\t}\n\t\t\n\t\t.awesomplete li[aria-selected=\"true\"] mark {\n\t\t\tbackground: hsl(86, 100%, 21%);\n\t\t\tcolor: inherit;\n\t\t}"],"sourceRoot":"/source/"}
\ No newline at end of file
diff --git a/smash/web/static/AdminLTE/plugins/awesomplete/awesomplete.js b/smash/web/static/AdminLTE/plugins/awesomplete/awesomplete.js
deleted file mode 100644
index fc9d803c108b738210c8204639d9d66c5ecd9e46..0000000000000000000000000000000000000000
--- a/smash/web/static/AdminLTE/plugins/awesomplete/awesomplete.js
+++ /dev/null
@@ -1,454 +0,0 @@
-/**
- * Simple, lightweight, usable local autocomplete library for modern browsers
- * Because there weren’t enough autocomplete scripts in the world? Because I’m completely insane and have NIH syndrome? Probably both. :P
- * @author Lea Verou http://leaverou.github.io/awesomplete
- * MIT license
- */
-
-(function () {
-
-var _ = function (input, o) {
-	var me = this;
-
-	// Setup
-
-	this.isOpened = false;
-
-	this.input = $(input);
-	this.input.setAttribute("autocomplete", "off");
-	this.input.setAttribute("aria-autocomplete", "list");
-
-	o = o || {};
-
-	configure(this, {
-		minChars: 2,
-		maxItems: 10,
-		autoFirst: false,
-		data: _.DATA,
-		filter: _.FILTER_CONTAINS,
-		sort: o.sort === false ? false : _.SORT_BYLENGTH,
-		item: _.ITEM,
-		replace: _.REPLACE
-	}, o);
-
-	this.index = -1;
-
-	// Create necessary elements
-
-	this.container = $.create("div", {
-		className: "awesomplete",
-		around: input
-	});
-
-	this.ul = $.create("ul", {
-		hidden: "hidden",
-		inside: this.container
-	});
-
-	this.status = $.create("span", {
-		className: "visually-hidden",
-		role: "status",
-		"aria-live": "assertive",
-		"aria-relevant": "additions",
-		inside: this.container
-	});
-
-	// Bind events
-
-	$.bind(this.input, {
-		"input": this.evaluate.bind(this),
-		"blur": this.close.bind(this, { reason: "blur" }),
-		"keydown": function(evt) {
-			var c = evt.keyCode;
-
-			// If the dropdown `ul` is in view, then act on keydown for the following keys:
-			// Enter / Esc / Up / Down
-			if(me.opened) {
-				if (c === 13 && me.selected) { // Enter
-					evt.preventDefault();
-					me.select();
-				}
-				else if (c === 27) { // Esc
-					me.close({ reason: "esc" });
-				}
-				else if (c === 38 || c === 40) { // Down/Up arrow
-					evt.preventDefault();
-					me[c === 38? "previous" : "next"]();
-				}
-			}
-		}
-	});
-
-	$.bind(this.input.form, {"submit": this.close.bind(this, { reason: "submit" })});
-
-	$.bind(this.ul, {"mousedown": function(evt) {
-		var li = evt.target;
-
-		if (li !== this) {
-
-			while (li && !/li/i.test(li.nodeName)) {
-				li = li.parentNode;
-			}
-
-			if (li && evt.button === 0) {  // Only select on left click
-				evt.preventDefault();
-				me.select(li, evt.target);
-			}
-		}
-	}});
-
-	if (this.input.hasAttribute("list")) {
-		this.list = "#" + this.input.getAttribute("list");
-		this.input.removeAttribute("list");
-	}
-	else {
-		this.list = this.input.getAttribute("data-list") || o.list || [];
-	}
-
-	_.all.push(this);
-};
-
-_.prototype = {
-	set list(list) {
-		if (Array.isArray(list)) {
-			this._list = list;
-		}
-		else if (typeof list === "string" && list.indexOf(",") > -1) {
-				this._list = list.split(/\s*,\s*/);
-		}
-		else { // Element or CSS selector
-			list = $(list);
-
-			if (list && list.children) {
-				var items = [];
-				slice.apply(list.children).forEach(function (el) {
-					if (!el.disabled) {
-						var text = el.textContent.trim();
-						var value = el.value || text;
-						var label = el.label || text;
-						if (value !== "") {
-							items.push({ label: label, value: value });
-						}
-					}
-				});
-				this._list = items;
-			}
-		}
-
-		if (document.activeElement === this.input) {
-			this.evaluate();
-		}
-	},
-
-	get selected() {
-		return this.index > -1;
-	},
-
-	get opened() {
-		return this.isOpened;
-	},
-
-	close: function (o) {
-		if (!this.opened) {
-			return;
-		}
-
-		this.ul.setAttribute("hidden", "");
-		this.isOpened = false;
-		this.index = -1;
-
-		$.fire(this.input, "awesomplete-close", o || {});
-	},
-
-	open: function () {
-		this.ul.removeAttribute("hidden");
-		this.isOpened = true;
-
-		if (this.autoFirst && this.index === -1) {
-			this.goto(0);
-		}
-
-		$.fire(this.input, "awesomplete-open");
-	},
-
-	next: function () {
-		var count = this.ul.children.length;
-		this.goto(this.index < count - 1 ? this.index + 1 : (count ? 0 : -1) );
-	},
-
-	previous: function () {
-		var count = this.ul.children.length;
-		var pos = this.index - 1;
-
-		this.goto(this.selected && pos !== -1 ? pos : count - 1);
-	},
-
-	// Should not be used, highlights specific item without any checks!
-	goto: function (i) {
-		var lis = this.ul.children;
-
-		if (this.selected) {
-			lis[this.index].setAttribute("aria-selected", "false");
-		}
-
-		this.index = i;
-
-		if (i > -1 && lis.length > 0) {
-			lis[i].setAttribute("aria-selected", "true");
-			this.status.textContent = lis[i].textContent;
-
-			// scroll to highlighted element in case parent's height is fixed
-			this.ul.scrollTop = lis[i].offsetTop - this.ul.clientHeight + lis[i].clientHeight;
-
-			$.fire(this.input, "awesomplete-highlight", {
-				text: this.suggestions[this.index]
-			});
-		}
-	},
-
-	select: function (selected, origin) {
-		if (selected) {
-			this.index = $.siblingIndex(selected);
-		} else {
-			selected = this.ul.children[this.index];
-		}
-
-		if (selected) {
-			var suggestion = this.suggestions[this.index];
-
-			var allowed = $.fire(this.input, "awesomplete-select", {
-				text: suggestion,
-				origin: origin || selected
-			});
-
-			if (allowed) {
-				this.replace(suggestion);
-				this.close({ reason: "select" });
-				$.fire(this.input, "awesomplete-selectcomplete", {
-					text: suggestion
-				});
-			}
-		}
-	},
-
-	evaluate: function() {
-		var me = this;
-		var value = this.input.value;
-
-		if (value.length >= this.minChars && this._list.length > 0) {
-			this.index = -1;
-			// Populate list with options that match
-			this.ul.innerHTML = "";
-
-			this.suggestions = this._list
-				.map(function(item) {
-					return new Suggestion(me.data(item, value));
-				})
-				.filter(function(item) {
-					return me.filter(item, value);
-				});
-
-			if (this.sort !== false) {
-				this.suggestions = this.suggestions.sort(this.sort);
-			}
-
-			this.suggestions = this.suggestions.slice(0, this.maxItems);
-
-			this.suggestions.forEach(function(text) {
-					me.ul.appendChild(me.item(text, value));
-				});
-
-			if (this.ul.children.length === 0) {
-				this.close({ reason: "nomatches" });
-			} else {
-				this.open();
-			}
-		}
-		else {
-			this.close({ reason: "nomatches" });
-		}
-	}
-};
-
-// Static methods/properties
-
-_.all = [];
-
-_.FILTER_CONTAINS = function (text, input) {
-	return RegExp($.regExpEscape(input.trim()), "i").test(text);
-};
-
-_.FILTER_STARTSWITH = function (text, input) {
-	return RegExp("^" + $.regExpEscape(input.trim()), "i").test(text);
-};
-
-_.SORT_BYLENGTH = function (a, b) {
-	if (a.length !== b.length) {
-		return a.length - b.length;
-	}
-
-	return a < b? -1 : 1;
-};
-
-_.ITEM = function (text, input) {
-	var html = input.trim() === '' ? text : text.replace(RegExp($.regExpEscape(input.trim()), "gi"), "<mark>$&</mark>");
-	return $.create("li", {
-		innerHTML: html,
-		"aria-selected": "false"
-	});
-};
-
-_.REPLACE = function (text) {
-	this.input.value = text.value;
-};
-
-_.DATA = function (item/*, input*/) { return item; };
-
-// Private functions
-
-function Suggestion(data) {
-	var o = Array.isArray(data)
-	  ? { label: data[0], value: data[1] }
-	  : typeof data === "object" && "label" in data && "value" in data ? data : { label: data, value: data };
-
-	this.label = o.label || o.value;
-	this.value = o.value;
-}
-Object.defineProperty(Suggestion.prototype = Object.create(String.prototype), "length", {
-	get: function() { return this.label.length; }
-});
-Suggestion.prototype.toString = Suggestion.prototype.valueOf = function () {
-	return "" + this.label;
-};
-
-function configure(instance, properties, o) {
-	for (var i in properties) {
-		var initial = properties[i],
-		    attrValue = instance.input.getAttribute("data-" + i.toLowerCase());
-
-		if (typeof initial === "number") {
-			instance[i] = parseInt(attrValue);
-		}
-		else if (initial === false) { // Boolean options must be false by default anyway
-			instance[i] = attrValue !== null;
-		}
-		else if (initial instanceof Function) {
-			instance[i] = null;
-		}
-		else {
-			instance[i] = attrValue;
-		}
-
-		if (!instance[i] && instance[i] !== 0) {
-			instance[i] = (i in o)? o[i] : initial;
-		}
-	}
-}
-
-// Helpers
-
-var slice = Array.prototype.slice;
-
-function $(expr, con) {
-	return typeof expr === "string"? (con || document).querySelector(expr) : expr || null;
-}
-
-function $$(expr, con) {
-	return slice.call((con || document).querySelectorAll(expr));
-}
-
-$.create = function(tag, o) {
-	var element = document.createElement(tag);
-
-	for (var i in o) {
-		var val = o[i];
-
-		if (i === "inside") {
-			$(val).appendChild(element);
-		}
-		else if (i === "around") {
-			var ref = $(val);
-			ref.parentNode.insertBefore(element, ref);
-			element.appendChild(ref);
-		}
-		else if (i in element) {
-			element[i] = val;
-		}
-		else {
-			element.setAttribute(i, val);
-		}
-	}
-
-	return element;
-};
-
-$.bind = function(element, o) {
-	if (element) {
-		for (var event in o) {
-			var callback = o[event];
-
-			event.split(/\s+/).forEach(function (event) {
-				element.addEventListener(event, callback);
-			});
-		}
-	}
-};
-
-$.fire = function(target, type, properties) {
-	var evt = document.createEvent("HTMLEvents");
-
-	evt.initEvent(type, true, true );
-
-	for (var j in properties) {
-		evt[j] = properties[j];
-	}
-
-	return target.dispatchEvent(evt);
-};
-
-$.regExpEscape = function (s) {
-	return s.replace(/[-\\^$*+?.()|[\]{}]/g, "\\$&");
-};
-
-$.siblingIndex = function (el) {
-	/* eslint-disable no-cond-assign */
-	for (var i = 0; el = el.previousElementSibling; i++);
-	return i;
-};
-
-// Initialization
-
-function init() {
-	$$("input.awesomplete").forEach(function (input) {
-		new _(input);
-	});
-}
-
-// Are we in a browser? Check for Document constructor
-if (typeof Document !== "undefined") {
-	// DOM already loaded?
-	if (document.readyState !== "loading") {
-		init();
-	}
-	else {
-		// Wait for it
-		document.addEventListener("DOMContentLoaded", init);
-	}
-}
-
-_.$ = $;
-_.$$ = $$;
-
-// Make sure to export Awesomplete on self when in a browser
-if (typeof self !== "undefined") {
-	self.Awesomplete = _;
-}
-
-// Expose Awesomplete as a CJS module
-if (typeof module === "object" && module.exports) {
-	module.exports = _;
-}
-
-return _;
-
-}());
diff --git a/smash/web/static/AdminLTE/plugins/awesomplete/awesomplete.min.js b/smash/web/static/AdminLTE/plugins/awesomplete/awesomplete.min.js
deleted file mode 100644
index c0faecf60bf2b754449cf36b665cc230a42e44da..0000000000000000000000000000000000000000
--- a/smash/web/static/AdminLTE/plugins/awesomplete/awesomplete.min.js
+++ /dev/null
@@ -1,3 +0,0 @@
-// Awesomplete - Lea Verou - MIT license
-!function(){function t(t){var e=Array.isArray(t)?{label:t[0],value:t[1]}:"object"==typeof t&&"label"in t&&"value"in t?t:{label:t,value:t};this.label=e.label||e.value,this.value=e.value}function e(t,e,i){for(var n in e){var s=e[n],r=t.input.getAttribute("data-"+n.toLowerCase());"number"==typeof s?t[n]=parseInt(r):s===!1?t[n]=null!==r:s instanceof Function?t[n]=null:t[n]=r,t[n]||0===t[n]||(t[n]=n in i?i[n]:s)}}function i(t,e){return"string"==typeof t?(e||document).querySelector(t):t||null}function n(t,e){return o.call((e||document).querySelectorAll(t))}function s(){n("input.awesomplete").forEach(function(t){new r(t)})}var r=function(t,n){var s=this;this.isOpened=!1,this.input=i(t),this.input.setAttribute("autocomplete","off"),this.input.setAttribute("aria-autocomplete","list"),n=n||{},e(this,{minChars:2,maxItems:10,autoFirst:!1,data:r.DATA,filter:r.FILTER_CONTAINS,sort:r.SORT_BYLENGTH,item:r.ITEM,replace:r.REPLACE},n),this.index=-1,this.container=i.create("div",{className:"awesomplete",around:t}),this.ul=i.create("ul",{hidden:"hidden",inside:this.container}),this.status=i.create("span",{className:"visually-hidden",role:"status","aria-live":"assertive","aria-relevant":"additions",inside:this.container}),i.bind(this.input,{input:this.evaluate.bind(this),blur:this.close.bind(this,{reason:"blur"}),keydown:function(t){var e=t.keyCode;s.opened&&(13===e&&s.selected?(t.preventDefault(),s.select()):27===e?s.close({reason:"esc"}):38!==e&&40!==e||(t.preventDefault(),s[38===e?"previous":"next"]()))}}),i.bind(this.input.form,{submit:this.close.bind(this,{reason:"submit"})}),i.bind(this.ul,{mousedown:function(t){var e=t.target;if(e!==this){for(;e&&!/li/i.test(e.nodeName);)e=e.parentNode;e&&0===t.button&&(t.preventDefault(),s.select(e,t.target))}}}),this.input.hasAttribute("list")?(this.list="#"+this.input.getAttribute("list"),this.input.removeAttribute("list")):this.list=this.input.getAttribute("data-list")||n.list||[],r.all.push(this)};r.prototype={set list(t){if(Array.isArray(t))this._list=t;else if("string"==typeof t&&t.indexOf(",")>-1)this._list=t.split(/\s*,\s*/);else if(t=i(t),t&&t.children){var e=[];o.apply(t.children).forEach(function(t){if(!t.disabled){var i=t.textContent.trim(),n=t.value||i,s=t.label||i;""!==n&&e.push({label:s,value:n})}}),this._list=e}document.activeElement===this.input&&this.evaluate()},get selected(){return this.index>-1},get opened(){return this.isOpened},close:function(t){this.opened&&(this.ul.setAttribute("hidden",""),this.isOpened=!1,this.index=-1,i.fire(this.input,"awesomplete-close",t||{}))},open:function(){this.ul.removeAttribute("hidden"),this.isOpened=!0,this.autoFirst&&this.index===-1&&this.goto(0),i.fire(this.input,"awesomplete-open")},next:function(){var t=this.ul.children.length;this.goto(this.index<t-1?this.index+1:t?0:-1)},previous:function(){var t=this.ul.children.length,e=this.index-1;this.goto(this.selected&&e!==-1?e:t-1)},goto:function(t){var e=this.ul.children;this.selected&&e[this.index].setAttribute("aria-selected","false"),this.index=t,t>-1&&e.length>0&&(e[t].setAttribute("aria-selected","true"),this.status.textContent=e[t].textContent,i.fire(this.input,"awesomplete-highlight",{text:this.suggestions[this.index]}))},select:function(t,e){if(t?this.index=i.siblingIndex(t):t=this.ul.children[this.index],t){var n=this.suggestions[this.index],s=i.fire(this.input,"awesomplete-select",{text:n,origin:e||t});s&&(this.replace(n),this.close({reason:"select"}),i.fire(this.input,"awesomplete-selectcomplete",{text:n}))}},evaluate:function(){var e=this,i=this.input.value;i.length>=this.minChars&&this._list.length>0?(this.index=-1,this.ul.innerHTML="",this.suggestions=this._list.map(function(n){return new t(e.data(n,i))}).filter(function(t){return e.filter(t,i)}).sort(this.sort).slice(0,this.maxItems),this.suggestions.forEach(function(t){e.ul.appendChild(e.item(t,i))}),0===this.ul.children.length?this.close({reason:"nomatches"}):this.open()):this.close({reason:"nomatches"})}},r.all=[],r.FILTER_CONTAINS=function(t,e){return RegExp(i.regExpEscape(e.trim()),"i").test(t)},r.FILTER_STARTSWITH=function(t,e){return RegExp("^"+i.regExpEscape(e.trim()),"i").test(t)},r.SORT_BYLENGTH=function(t,e){return t.length!==e.length?t.length-e.length:t<e?-1:1},r.ITEM=function(t,e){var n=""===e?t:t.replace(RegExp(i.regExpEscape(e.trim()),"gi"),"<mark>$&</mark>");return i.create("li",{innerHTML:n,"aria-selected":"false"})},r.REPLACE=function(t){this.input.value=t.value},r.DATA=function(t){return t},Object.defineProperty(t.prototype=Object.create(String.prototype),"length",{get:function(){return this.label.length}}),t.prototype.toString=t.prototype.valueOf=function(){return""+this.label};var o=Array.prototype.slice;return i.create=function(t,e){var n=document.createElement(t);for(var s in e){var r=e[s];if("inside"===s)i(r).appendChild(n);else if("around"===s){var o=i(r);o.parentNode.insertBefore(n,o),n.appendChild(o)}else s in n?n[s]=r:n.setAttribute(s,r)}return n},i.bind=function(t,e){if(t)for(var i in e){var n=e[i];i.split(/\s+/).forEach(function(e){t.addEventListener(e,n)})}},i.fire=function(t,e,i){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0);for(var s in i)n[s]=i[s];return t.dispatchEvent(n)},i.regExpEscape=function(t){return t.replace(/[-\\^$*+?.()|[\]{}]/g,"\\$&")},i.siblingIndex=function(t){for(var e=0;t=t.previousElementSibling;e++);return e},"undefined"!=typeof Document&&("loading"!==document.readyState?s():document.addEventListener("DOMContentLoaded",s)),r.$=i,r.$$=n,"undefined"!=typeof self&&(self.Awesomplete=r),"object"==typeof module&&module.exports&&(module.exports=r),r}();
-//# sourceMappingURL=awesomplete.min.js.map
diff --git a/smash/web/static/AdminLTE/plugins/awesomplete/awesomplete.min.js.map b/smash/web/static/AdminLTE/plugins/awesomplete/awesomplete.min.js.map
deleted file mode 100644
index 435391aa608831528cbad3310776bd25bae702a5..0000000000000000000000000000000000000000
--- a/smash/web/static/AdminLTE/plugins/awesomplete/awesomplete.min.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["awesomplete.js"],"names":["Suggestion","data","o","Array","isArray","label","value","this","configure","instance","properties","i","initial","attrValue","input","getAttribute","toLowerCase","parseInt","Function","$","expr","con","document","querySelector","$$","slice","call","querySelectorAll","init","forEach","_","me","isOpened","setAttribute","minChars","maxItems","autoFirst","DATA","filter","FILTER_CONTAINS","sort","SORT_BYLENGTH","item","ITEM","replace","REPLACE","index","container","create","className","around","ul","hidden","inside","status","role","aria-live","aria-relevant","bind","evaluate","blur","close","reason","keydown","evt","c","keyCode","opened","selected","preventDefault","select","form","submit","mousedown","li","target","test","nodeName","parentNode","button","hasAttribute","list","removeAttribute","all","push","prototype","_list","indexOf","split","children","items","apply","el","disabled","text","textContent","trim","activeElement","fire","open","goto","next","count","length","previous","pos","lis","suggestions","origin","siblingIndex","suggestion","allowed","innerHTML","map","appendChild","RegExp","regExpEscape","FILTER_STARTSWITH","a","b","html","aria-selected","Object","defineProperty","String","get","toString","valueOf","tag","element","createElement","val","ref","insertBefore","event","callback","addEventListener","type","createEvent","initEvent","j","dispatchEvent","s","previousElementSibling","Document","readyState","self","Awesomplete","module","exports"],"mappings":"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","file":"awesomplete.min.js","sourcesContent":["/**\n * Simple, lightweight, usable local autocomplete library for modern browsers\n * Because there weren’t enough autocomplete scripts in the world? Because I’m completely insane and have NIH syndrome? Probably both. :P\n * @author Lea Verou http://leaverou.github.io/awesomplete\n * MIT license\n */\n\n(function () {\n\nvar _ = function (input, o) {\n\tvar me = this;\n\n\t// Setup\n\n\tthis.isOpened = false;\n\n\tthis.input = $(input);\n\tthis.input.setAttribute(\"autocomplete\", \"off\");\n\tthis.input.setAttribute(\"aria-autocomplete\", \"list\");\n\n\to = o || {};\n\n\tconfigure(this, {\n\t\tminChars: 2,\n\t\tmaxItems: 10,\n\t\tautoFirst: false,\n\t\tdata: _.DATA,\n\t\tfilter: _.FILTER_CONTAINS,\n\t\tsort: _.SORT_BYLENGTH,\n\t\titem: _.ITEM,\n\t\treplace: _.REPLACE\n\t}, o);\n\n\tthis.index = -1;\n\n\t// Create necessary elements\n\n\tthis.container = $.create(\"div\", {\n\t\tclassName: \"awesomplete\",\n\t\taround: input\n\t});\n\n\tthis.ul = $.create(\"ul\", {\n\t\thidden: \"hidden\",\n\t\tinside: this.container\n\t});\n\n\tthis.status = $.create(\"span\", {\n\t\tclassName: \"visually-hidden\",\n\t\trole: \"status\",\n\t\t\"aria-live\": \"assertive\",\n\t\t\"aria-relevant\": \"additions\",\n\t\tinside: this.container\n\t});\n\n\t// Bind events\n\n\t$.bind(this.input, {\n\t\t\"input\": this.evaluate.bind(this),\n\t\t\"blur\": this.close.bind(this, { reason: \"blur\" }),\n\t\t\"keydown\": function(evt) {\n\t\t\tvar c = evt.keyCode;\n\n\t\t\t// If the dropdown `ul` is in view, then act on keydown for the following keys:\n\t\t\t// Enter / Esc / Up / Down\n\t\t\tif(me.opened) {\n\t\t\t\tif (c === 13 && me.selected) { // Enter\n\t\t\t\t\tevt.preventDefault();\n\t\t\t\t\tme.select();\n\t\t\t\t}\n\t\t\t\telse if (c === 27) { // Esc\n\t\t\t\t\tme.close({ reason: \"esc\" });\n\t\t\t\t}\n\t\t\t\telse if (c === 38 || c === 40) { // Down/Up arrow\n\t\t\t\t\tevt.preventDefault();\n\t\t\t\t\tme[c === 38? \"previous\" : \"next\"]();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n\n\t$.bind(this.input.form, {\"submit\": this.close.bind(this, { reason: \"submit\" })});\n\n\t$.bind(this.ul, {\"mousedown\": function(evt) {\n\t\tvar li = evt.target;\n\n\t\tif (li !== this) {\n\n\t\t\twhile (li && !/li/i.test(li.nodeName)) {\n\t\t\t\tli = li.parentNode;\n\t\t\t}\n\n\t\t\tif (li && evt.button === 0) {  // Only select on left click\n\t\t\t\tevt.preventDefault();\n\t\t\t\tme.select(li, evt.target);\n\t\t\t}\n\t\t}\n\t}});\n\n\tif (this.input.hasAttribute(\"list\")) {\n\t\tthis.list = \"#\" + this.input.getAttribute(\"list\");\n\t\tthis.input.removeAttribute(\"list\");\n\t}\n\telse {\n\t\tthis.list = this.input.getAttribute(\"data-list\") || o.list || [];\n\t}\n\n\t_.all.push(this);\n};\n\n_.prototype = {\n\tset list(list) {\n\t\tif (Array.isArray(list)) {\n\t\t\tthis._list = list;\n\t\t}\n\t\telse if (typeof list === \"string\" && list.indexOf(\",\") > -1) {\n\t\t\t\tthis._list = list.split(/\\s*,\\s*/);\n\t\t}\n\t\telse { // Element or CSS selector\n\t\t\tlist = $(list);\n\n\t\t\tif (list && list.children) {\n\t\t\t\tvar items = [];\n\t\t\t\tslice.apply(list.children).forEach(function (el) {\n\t\t\t\t\tif (!el.disabled) {\n\t\t\t\t\t\tvar text = el.textContent.trim();\n\t\t\t\t\t\tvar value = el.value || text;\n\t\t\t\t\t\tvar label = el.label || text;\n\t\t\t\t\t\tif (value !== \"\") {\n\t\t\t\t\t\t\titems.push({ label: label, value: value });\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\tthis._list = items;\n\t\t\t}\n\t\t}\n\n\t\tif (document.activeElement === this.input) {\n\t\t\tthis.evaluate();\n\t\t}\n\t},\n\n\tget selected() {\n\t\treturn this.index > -1;\n\t},\n\n\tget opened() {\n\t\treturn this.isOpened;\n\t},\n\n\tclose: function (o) {\n\t\tif (!this.opened) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.ul.setAttribute(\"hidden\", \"\");\n\t\tthis.isOpened = false;\n\t\tthis.index = -1;\n\n\t\t$.fire(this.input, \"awesomplete-close\", o || {});\n\t},\n\n\topen: function () {\n\t\tthis.ul.removeAttribute(\"hidden\");\n\t\tthis.isOpened = true;\n\n\t\tif (this.autoFirst && this.index === -1) {\n\t\t\tthis.goto(0);\n\t\t}\n\n\t\t$.fire(this.input, \"awesomplete-open\");\n\t},\n\n\tnext: function () {\n\t\tvar count = this.ul.children.length;\n\t\tthis.goto(this.index < count - 1 ? this.index + 1 : (count ? 0 : -1) );\n\t},\n\n\tprevious: function () {\n\t\tvar count = this.ul.children.length;\n\t\tvar pos = this.index - 1;\n\n\t\tthis.goto(this.selected && pos !== -1 ? pos : count - 1);\n\t},\n\n\t// Should not be used, highlights specific item without any checks!\n\tgoto: function (i) {\n\t\tvar lis = this.ul.children;\n\n\t\tif (this.selected) {\n\t\t\tlis[this.index].setAttribute(\"aria-selected\", \"false\");\n\t\t}\n\n\t\tthis.index = i;\n\n\t\tif (i > -1 && lis.length > 0) {\n\t\t\tlis[i].setAttribute(\"aria-selected\", \"true\");\n\t\t\tthis.status.textContent = lis[i].textContent;\n\n\t\t\t$.fire(this.input, \"awesomplete-highlight\", {\n\t\t\t\ttext: this.suggestions[this.index]\n\t\t\t});\n\t\t}\n\t},\n\n\tselect: function (selected, origin) {\n\t\tif (selected) {\n\t\t\tthis.index = $.siblingIndex(selected);\n\t\t} else {\n\t\t\tselected = this.ul.children[this.index];\n\t\t}\n\n\t\tif (selected) {\n\t\t\tvar suggestion = this.suggestions[this.index];\n\n\t\t\tvar allowed = $.fire(this.input, \"awesomplete-select\", {\n\t\t\t\ttext: suggestion,\n\t\t\t\torigin: origin || selected\n\t\t\t});\n\n\t\t\tif (allowed) {\n\t\t\t\tthis.replace(suggestion);\n\t\t\t\tthis.close({ reason: \"select\" });\n\t\t\t\t$.fire(this.input, \"awesomplete-selectcomplete\", {\n\t\t\t\t\ttext: suggestion\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t},\n\n\tevaluate: function() {\n\t\tvar me = this;\n\t\tvar value = this.input.value;\n\n\t\tif (value.length >= this.minChars && this._list.length > 0) {\n\t\t\tthis.index = -1;\n\t\t\t// Populate list with options that match\n\t\t\tthis.ul.innerHTML = \"\";\n\n\t\t\tthis.suggestions = this._list\n\t\t\t\t.map(function(item) {\n\t\t\t\t\treturn new Suggestion(me.data(item, value));\n\t\t\t\t})\n\t\t\t\t.filter(function(item) {\n\t\t\t\t\treturn me.filter(item, value);\n\t\t\t\t})\n\t\t\t\t.sort(this.sort)\n\t\t\t\t.slice(0, this.maxItems);\n\n\t\t\tthis.suggestions.forEach(function(text) {\n\t\t\t\t\tme.ul.appendChild(me.item(text, value));\n\t\t\t\t});\n\n\t\t\tif (this.ul.children.length === 0) {\n\t\t\t\tthis.close({ reason: \"nomatches\" });\n\t\t\t} else {\n\t\t\t\tthis.open();\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\tthis.close({ reason: \"nomatches\" });\n\t\t}\n\t}\n};\n\n// Static methods/properties\n\n_.all = [];\n\n_.FILTER_CONTAINS = function (text, input) {\n\treturn RegExp($.regExpEscape(input.trim()), \"i\").test(text);\n};\n\n_.FILTER_STARTSWITH = function (text, input) {\n\treturn RegExp(\"^\" + $.regExpEscape(input.trim()), \"i\").test(text);\n};\n\n_.SORT_BYLENGTH = function (a, b) {\n\tif (a.length !== b.length) {\n\t\treturn a.length - b.length;\n\t}\n\n\treturn a < b? -1 : 1;\n};\n\n_.ITEM = function (text, input) {\n\tvar html = input === '' ? text : text.replace(RegExp($.regExpEscape(input.trim()), \"gi\"), \"<mark>$&</mark>\");\n\treturn $.create(\"li\", {\n\t\tinnerHTML: html,\n\t\t\"aria-selected\": \"false\"\n\t});\n};\n\n_.REPLACE = function (text) {\n\tthis.input.value = text.value;\n};\n\n_.DATA = function (item/*, input*/) { return item; };\n\n// Private functions\n\nfunction Suggestion(data) {\n\tvar o = Array.isArray(data)\n\t  ? { label: data[0], value: data[1] }\n\t  : typeof data === \"object\" && \"label\" in data && \"value\" in data ? data : { label: data, value: data };\n\n\tthis.label = o.label || o.value;\n\tthis.value = o.value;\n}\nObject.defineProperty(Suggestion.prototype = Object.create(String.prototype), \"length\", {\n\tget: function() { return this.label.length; }\n});\nSuggestion.prototype.toString = Suggestion.prototype.valueOf = function () {\n\treturn \"\" + this.label;\n};\n\nfunction configure(instance, properties, o) {\n\tfor (var i in properties) {\n\t\tvar initial = properties[i],\n\t\t    attrValue = instance.input.getAttribute(\"data-\" + i.toLowerCase());\n\n\t\tif (typeof initial === \"number\") {\n\t\t\tinstance[i] = parseInt(attrValue);\n\t\t}\n\t\telse if (initial === false) { // Boolean options must be false by default anyway\n\t\t\tinstance[i] = attrValue !== null;\n\t\t}\n\t\telse if (initial instanceof Function) {\n\t\t\tinstance[i] = null;\n\t\t}\n\t\telse {\n\t\t\tinstance[i] = attrValue;\n\t\t}\n\n\t\tif (!instance[i] && instance[i] !== 0) {\n\t\t\tinstance[i] = (i in o)? o[i] : initial;\n\t\t}\n\t}\n}\n\n// Helpers\n\nvar slice = Array.prototype.slice;\n\nfunction $(expr, con) {\n\treturn typeof expr === \"string\"? (con || document).querySelector(expr) : expr || null;\n}\n\nfunction $$(expr, con) {\n\treturn slice.call((con || document).querySelectorAll(expr));\n}\n\n$.create = function(tag, o) {\n\tvar element = document.createElement(tag);\n\n\tfor (var i in o) {\n\t\tvar val = o[i];\n\n\t\tif (i === \"inside\") {\n\t\t\t$(val).appendChild(element);\n\t\t}\n\t\telse if (i === \"around\") {\n\t\t\tvar ref = $(val);\n\t\t\tref.parentNode.insertBefore(element, ref);\n\t\t\telement.appendChild(ref);\n\t\t}\n\t\telse if (i in element) {\n\t\t\telement[i] = val;\n\t\t}\n\t\telse {\n\t\t\telement.setAttribute(i, val);\n\t\t}\n\t}\n\n\treturn element;\n};\n\n$.bind = function(element, o) {\n\tif (element) {\n\t\tfor (var event in o) {\n\t\t\tvar callback = o[event];\n\n\t\t\tevent.split(/\\s+/).forEach(function (event) {\n\t\t\t\telement.addEventListener(event, callback);\n\t\t\t});\n\t\t}\n\t}\n};\n\n$.fire = function(target, type, properties) {\n\tvar evt = document.createEvent(\"HTMLEvents\");\n\n\tevt.initEvent(type, true, true );\n\n\tfor (var j in properties) {\n\t\tevt[j] = properties[j];\n\t}\n\n\treturn target.dispatchEvent(evt);\n};\n\n$.regExpEscape = function (s) {\n\treturn s.replace(/[-\\\\^$*+?.()|[\\]{}]/g, \"\\\\$&\");\n};\n\n$.siblingIndex = function (el) {\n\t/* eslint-disable no-cond-assign */\n\tfor (var i = 0; el = el.previousElementSibling; i++);\n\treturn i;\n};\n\n// Initialization\n\nfunction init() {\n\t$$(\"input.awesomplete\").forEach(function (input) {\n\t\tnew _(input);\n\t});\n}\n\n// Are we in a browser? Check for Document constructor\nif (typeof Document !== \"undefined\") {\n\t// DOM already loaded?\n\tif (document.readyState !== \"loading\") {\n\t\tinit();\n\t}\n\telse {\n\t\t// Wait for it\n\t\tdocument.addEventListener(\"DOMContentLoaded\", init);\n\t}\n}\n\n_.$ = $;\n_.$$ = $$;\n\n// Make sure to export Awesomplete on self when in a browser\nif (typeof self !== \"undefined\") {\n\tself.Awesomplete = _;\n}\n\n// Expose Awesomplete as a CJS module\nif (typeof module === \"object\" && module.exports) {\n\tmodule.exports = _;\n}\n\nreturn _;\n\n}());\n"],"sourceRoot":"/source/"}
\ No newline at end of file
diff --git a/smash/web/static/AdminLTE/plugins/awesomplete/awesomplete.theme.css b/smash/web/static/AdminLTE/plugins/awesomplete/awesomplete.theme.css
deleted file mode 100644
index 8a964f11735510d956e60fa7fac86e4b4cf8fbad..0000000000000000000000000000000000000000
--- a/smash/web/static/AdminLTE/plugins/awesomplete/awesomplete.theme.css
+++ /dev/null
@@ -1,69 +0,0 @@
-.awesomplete > ul {
-	border-radius: .3em;
-	margin: .2em 0 0;
-	background: hsla(0,0%,100%,.9);
-	background: linear-gradient(to bottom right, white, hsla(0,0%,100%,.8));
-	border: 1px solid rgba(0,0,0,.3);
-	box-shadow: .05em .2em .6em rgba(0,0,0,.2);
-	text-shadow: none;
-}
-
-@supports (transform: scale(0)) {
-	.awesomplete > ul {
-		transition: .3s cubic-bezier(.4,.2,.5,1.4);
-		transform-origin: 1.43em -.43em;
-	}
-	
-	.awesomplete > ul[hidden],
-	.awesomplete > ul:empty {
-		opacity: 0;
-		transform: scale(0);
-		display: block;
-		transition-timing-function: ease;
-	}
-}
-
-	/* Pointer */
-	.awesomplete > ul:before {
-		content: "";
-		position: absolute;
-		top: -.43em;
-		left: 1em;
-		width: 0; height: 0;
-		padding: .4em;
-		background: white;
-		border: inherit;
-		border-right: 0;
-		border-bottom: 0;
-		-webkit-transform: rotate(45deg);
-		transform: rotate(45deg);
-	}
-
-	.awesomplete > ul > li {
-		position: relative;
-		padding: .2em .5em;
-		cursor: pointer;
-	}
-	
-	.awesomplete > ul > li:hover {
-		background: hsl(200, 40%, 80%);
-		color: black;
-	}
-	
-	.awesomplete > ul > li[aria-selected="true"] {
-		background: hsl(205, 40%, 40%);
-		color: white;
-	}
-	
-		.awesomplete mark {
-			background: hsl(65, 100%, 50%);
-		}
-		
-		.awesomplete li:hover mark {
-			background: hsl(68, 100%, 41%);
-		}
-		
-		.awesomplete li[aria-selected="true"] mark {
-			background: hsl(86, 100%, 21%);
-			color: inherit;
-		}
\ No newline at end of file
diff --git a/smash/web/static/AdminLTE/plugins/awesomplete/style.css b/smash/web/static/AdminLTE/plugins/awesomplete/style.css
deleted file mode 100644
index 68763ffe6359fe1e704616987abc34450904613c..0000000000000000000000000000000000000000
--- a/smash/web/static/AdminLTE/plugins/awesomplete/style.css
+++ /dev/null
@@ -1,292 +0,0 @@
-body {
-	max-width: 50rem;
-	padding: 1rem;
-	margin: auto;
-	background: hsl(35, 80%, 94%);
-	color: hsl(35, 50%, 20%);
-	text-shadow: 0 1px 1px white;
-	font: 120%/1.6 Baskerville, Palatino Linotype, Palatino, serif;
-}
-
-a {
-	color: #58a;
-}
-
-h1 {
-	text-align: center;
-	font-weight: 600;
-}
-
-	section > h1 {
-		margin-top: 2em;
-	}
-
-h2 {
-	color: hsl(35, 50%, 40%);
-	font-weight: 600;
-	font-size: 120%;
-}
-
-ul {
-	margin: 0;
-	padding-left: .8em;
-}
-
-strong {
-	font-weight: 600;
-}
-
-abbr {
-	border-bottom: .1em dotted hsl(40, 80%, 40%);
-	cursor: help;
-}
-
-input, button {
-	font: inherit;
-	text-shadow: inherit;
-}
-
-button {
-	padding: .1em .5em;
-	border-radius: .3em;
-	background: hsl(80, 80%, 80%);
-	background: linear-gradient(hsl(40, 70%, 80%), hsl(40, 70%, 70%));
-	border: 1px solid rgba(0,0,0,.3);
-	box-shadow: 0 1px white inset, 0 .3em .3em -.3em rgba(0,0,0,.3);
-}
-
-input {
-	width: 12em;
-	padding: .1em .3em;
-	border: 0;
-	border: 1px solid hsl(35, 80%, 60%);
-	background: hsla(0,0%,100%,.2);
-	border-radius: .3em;
-	box-shadow: .05em .1em .3em rgba(0,0,0,.3) inset;
-}
-
-@keyframes pulsate {
-	to {
-		box-shadow: .05em .1em .3em rgba(0,0,0,.3) inset, 0 0 .3em .1em #58a;
-	}
-}
-
-input:focus {
-	outline: none;
-	border: 1px solid #58a;
-	animation: pulsate 2s infinite alternate linear;
-	background: hsla(0,0%,100%,.5);
-}
-
-header {
-	max-width: 37rem;
-	margin: 0 auto 2em;
-	text-align: center;
-	font-size: 150%;
-	font-style: italic;
-}
-
-	header h1 {
-		margin: .1em 0;
-		text-align: center;
-		color: hsl(35, 50%, 40%);
-		font-size: 400%;
-		line-height: 1;
-		font-style: italic;
-		font-weight: normal;
-	}
-
-	header p {
-		margin: 0;
-	}
-
-		header p a {
-			text-decoration: none;
-			color: inherit;
-		}
-
-	.size {
-		position: absolute;
-		top: 1em;
-		right: 1em;
-		width: 4em;
-		padding: .8em .6em 1em;
-		background: hsl(40, 80%, 40%);
-		color: hsl(35, 80%, 94%);
-		text-shadow: none;
-		text-align: center;
-		line-height: 1.1;
-		text-indent: -.1em;
-		outline: .1em dotted;
-		outline-offset: -.3em;
-		text-decoration: none;
-		border-radius: .15em;
-	}
-
-	.size:hover {
-		background: #58a;
-	}
-
-		.size strong {
-			display: block;
-			margin-bottom: .1em;
-			font-size: 150%;
-			line-height: 1;
-			font-weight: 900;
-			font-style: normal;
-		}
-
-		.size .amp {
-			position: absolute;
-			left: 0; right: 0;
-			bottom: 0;
-			color: hsla(35, 80%, 94%,.3);
-			font-size: 350%;
-		}
-
-	nav {
-		margin-top: .5em;
-	}
-
-	nav a {
-		position: relative;
-		display: inline-block;
-		padding: 0 .4em;
-		margin: 0 .1em;
-
-		color: hsl(35, 80%, 94%);
-		text-shadow: none;
-		text-decoration: none;
-		font-size: 80%;
-	}
-
-	nav a::before {
-		content: "";
-		position: absolute;
-		top: 0; left: 0; right: 0; bottom: 0;
-		z-index: -1;
-		border-radius: .2em;
-		background: hsl(40, 80%, 40%);
-		-webkit-transform: skew(-16deg);
-		transform: skew(-16deg);
-	}
-
-	nav a[href="#download"] {
-		font-weight: 600;
-	}
-
-	nav a[href="#download"]::before {
-		background: hsl(65, 85%, 35%);
-	}
-
-	nav a:hover::before {
-		background: #58a;
-	}
-
-
-:not(pre) > code[class*="language-"],
-pre[class*="language-"] {
-	background: hsl(35, 70%, 88%);
-	font-size: 80%;
-	border-radius: .3em;
-}
-
-footer {
-	padding: .6em;
-	border-top: 1px solid rgba(0,0,0,.3);
-	margin-top: 1em;
-	text-align: center;
-}
-
-pre {
-	position: relative;
-}
-
-pre::before {
-	position: absolute;
-	top: 0;
-	right: .5em;
-	padding: .3em .4em;
-	border-radius: 0 0 .3em .3em;
-	background: hsl(35, 50%, 60%);
-	color: hsl(35, 80%, 90%);
-	text-shadow: none;
-	font: bold 100%/1 Baskerville, Palatino Linotype, Palatino, serif;
-}
-
-pre.language-markup::before {
-	content: "HTML";
-}
-
-pre.language-javascript::before {
-	content: "JS";
-}
-
-table {
-	table-layout: fixed;
-	border-spacing: 0;
-	border-collapse: collapse;
-}
-
-th {
-	font-size: 75%;
-}
-
-td {
-	vertical-align: top;
-	padding: .5em;
-	border: 1px solid rgba(0,0,0,.1);
-}
-
-:not(pre) > code[class*="language-"] {
-	background: none;
-}
-
-.github-star {
-	position: absolute;
-	top: 1em;
-	left: 1em;
-}
-
-#carbonads {
-	position: absolute;
-	top: 100%;
-	top: calc(100vh - 15em);
-	right: 1em;
-	max-width: 10em;
-	max-width: -webkit-min-content;
-	max-width: min-content;
-	font-size: 75%;
-}
-
-	#carbonads a {
-		text-decoration: none;
-		color: inherit;
-	}
-
-	#carbonads img {
-		display: block;
-	}
-
-#combobox .dropdown-input {
-	border-top-right-radius: 0;
-	border-bottom-right-radius: 0;
-}
-#combobox .dropdown-btn {
-	vertical-align: top;
-	height: 36.5px;
-	border-top-left-radius: 0;
-	border-bottom-left-radius: 0;
-}
-
-#combobox .caret {
-	display: inline-block;
-	width: 0;
-	height: 0;
-	margin-left: 2px;
-	vertical-align: middle;
-	border-top: 4px dashed;
-	border-top: 4px solid;
-	border-right: 4px solid transparent;
-	border-left: 4px solid transparent;
-}
diff --git a/smash/web/templates/appointment_types/add_edit.html b/smash/web/templates/appointment_types/add_edit.html
index 6cbee0e0868722ac233f7d8f442e9f878bb11019..c0bfb10c4d8d05f466f4a70cf08cf6a25689676a 100644
--- a/smash/web/templates/appointment_types/add_edit.html
+++ b/smash/web/templates/appointment_types/add_edit.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
 
 {% endblock styles %}
 
@@ -72,6 +72,6 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
 
 {% endblock scripts %}
\ No newline at end of file
diff --git a/smash/web/templates/appointment_types/confirm_delete.html b/smash/web/templates/appointment_types/confirm_delete.html
index 4a7bea4efefec6928bbc3b78db7965aa337e2c02..5a7cc8f9d70a24812f9d38224ce837bf5a725adf 100644
--- a/smash/web/templates/appointment_types/confirm_delete.html
+++ b/smash/web/templates/appointment_types/confirm_delete.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
 
 {% endblock styles %}
 
@@ -55,7 +55,7 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
 
 {% endblock scripts %}
 
diff --git a/smash/web/templates/appointments/confirm_delete.html b/smash/web/templates/appointments/confirm_delete.html
index ba2394895df57c20d7fd3272cad51e26d21d88f4..9786e079f84a36f8f7bbd12b47ae2fd462f569ba 100644
--- a/smash/web/templates/appointments/confirm_delete.html
+++ b/smash/web/templates/appointments/confirm_delete.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
 
 {% endblock styles %}
 
@@ -55,7 +55,7 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
 
 {% endblock scripts %}
 
diff --git a/smash/web/templates/contact_attempt/add.html b/smash/web/templates/contact_attempt/add.html
index 624407a50eed1ebad2e300bfc7ab8d6507b7473d..11bff1f1fba7aa230eaca48f5df18beaac2e6bdc 100644
--- a/smash/web/templates/contact_attempt/add.html
+++ b/smash/web/templates/contact_attempt/add.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
 
     {% include "includes/datepicker.css.html" %}
 {% endblock styles %}
@@ -75,7 +75,7 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
 
     {% include "includes/datetimepicker.js.html" %}
 {% endblock scripts %}
diff --git a/smash/web/templates/contact_attempt/edit.html b/smash/web/templates/contact_attempt/edit.html
index 028c782b051c1730cd089956ca01eb16f02c959b..9b564275ee74bf07da59073f816565265bdb96d1 100644
--- a/smash/web/templates/contact_attempt/edit.html
+++ b/smash/web/templates/contact_attempt/edit.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
 
     {% include "includes/datepicker.css.html" %}
 {% endblock styles %}
@@ -75,7 +75,7 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
 
     {% include "includes/datetimepicker.js.html" %}
 {% endblock scripts %}
diff --git a/smash/web/templates/custom_study_subject_field/add_edit.html b/smash/web/templates/custom_study_subject_field/add_edit.html
index c7d6fafaa29d65a9377c33362fdf9774ff46a2f8..acb90ce6c0ae5a5ea8e1ea00c51ef50743cf49c4 100644
--- a/smash/web/templates/custom_study_subject_field/add_edit.html
+++ b/smash/web/templates/custom_study_subject_field/add_edit.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
 
     {% include "includes/datepicker.css.html" %}
 {% endblock styles %}
@@ -76,7 +76,7 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
 
     {% include "includes/datetimepicker.js.html" %}
 
diff --git a/smash/web/templates/doctors/add.html b/smash/web/templates/doctors/add.html
index 44e36b4f4c8154eb77a9a3f4041bf3ae2acc5299..73d52fc83da5c79d6bd11ee9229aa89f0753dcb3 100644
--- a/smash/web/templates/doctors/add.html
+++ b/smash/web/templates/doctors/add.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
     <style type="text/css">
         .hidden_form_field{
             display: none;
@@ -73,7 +73,7 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
     <script>
         // If ever to debug and thinking why it doesn't work => look if there is 'null' in data from API
         $.get("{% url 'web.api.specializations' %}", function (data) {
diff --git a/smash/web/templates/doctors/add_holiday.html b/smash/web/templates/doctors/add_holiday.html
index e63324a3091c05b25d4c2fa14345f2939d3d0b39..ebbb29f2013152e97723999b9d0cc16bf66789b4 100644
--- a/smash/web/templates/doctors/add_holiday.html
+++ b/smash/web/templates/doctors/add_holiday.html
@@ -5,7 +5,7 @@
 {% block styles %}
     {{ block.super }}
     {% include "includes/datetimepicker.css.html" %}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
     <style type="text/css">
         .doctor_name {
             border-bottom: black 1px solid;
diff --git a/smash/web/templates/equipment_and_rooms/flying_teams/add.html b/smash/web/templates/equipment_and_rooms/flying_teams/add.html
index d058126f2161efe253ed3fcc1bea747243b39ac8..b73681c378cc790a81a8232998eb5d27bd63dc0f 100644
--- a/smash/web/templates/equipment_and_rooms/flying_teams/add.html
+++ b/smash/web/templates/equipment_and_rooms/flying_teams/add.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
 {% endblock styles %}
 
 {% block ui_active_tab %}'equipment_and_rooms'{% endblock ui_active_tab %}
diff --git a/smash/web/templates/equipment_and_rooms/flying_teams/edit.html b/smash/web/templates/equipment_and_rooms/flying_teams/edit.html
index f37ffd1c30a02338e7b5fffc93d9d2993ea4e7af..54b7f69b9d319b764d0c4cadcf7e0df1f6cc85cf 100644
--- a/smash/web/templates/equipment_and_rooms/flying_teams/edit.html
+++ b/smash/web/templates/equipment_and_rooms/flying_teams/edit.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
 {% endblock styles %}
 
 {% block ui_active_tab %}'equipment_and_rooms'{% endblock ui_active_tab %}
diff --git a/smash/web/templates/languages/add_edit.html b/smash/web/templates/languages/add_edit.html
index 794ba7c565fd4f2ef48e60e68b7095cb4c1610c2..9b5f2fef290bc20ef7b81998fa583bc07f0b0906 100644
--- a/smash/web/templates/languages/add_edit.html
+++ b/smash/web/templates/languages/add_edit.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
 
 {% endblock styles %}
 
@@ -72,6 +72,6 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
 
 {% endblock scripts %}
\ No newline at end of file
diff --git a/smash/web/templates/languages/confirm_delete.html b/smash/web/templates/languages/confirm_delete.html
index 929c61370a2960ce8a0147249fdef6411f5d4a6c..9b57ea303feed9ee82dbdf7f5e4daefdc22eab11 100644
--- a/smash/web/templates/languages/confirm_delete.html
+++ b/smash/web/templates/languages/confirm_delete.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
 
 {% endblock styles %}
 
@@ -55,7 +55,7 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
 
 {% endblock scripts %}
 
diff --git a/smash/web/templates/mail_templates/add_edit.html b/smash/web/templates/mail_templates/add_edit.html
index 1c3fdf242311b15f7cf69bf3ba25a08b1a7b9981..609271a1cd81883c2d33adb620810a92ead7f74f 100644
--- a/smash/web/templates/mail_templates/add_edit.html
+++ b/smash/web/templates/mail_templates/add_edit.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
     <style type="text/css">
         .help_text{
             margin-left: 5px;
@@ -78,7 +78,7 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
     <script type="text/javascript">
 
         function should_be_checked(){
diff --git a/smash/web/templates/mail_templates/confirm_delete.html b/smash/web/templates/mail_templates/confirm_delete.html
index 48b1967d7f4ae545ce63aed1474c707f80f405dc..194e94a5551d68944f3e2e68ca53666849ccfd6d 100644
--- a/smash/web/templates/mail_templates/confirm_delete.html
+++ b/smash/web/templates/mail_templates/confirm_delete.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
 
 {% endblock styles %}
 
@@ -55,7 +55,7 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
 
 {% endblock scripts %}
 
diff --git a/smash/web/templates/privacy_notice/add_edit.html b/smash/web/templates/privacy_notice/add_edit.html
index 17ad93d68448db002bc8e4c813749e38dacabfce..1adb6ead5536e6b719cb99df5cc9ef81d5e0361f 100644
--- a/smash/web/templates/privacy_notice/add_edit.html
+++ b/smash/web/templates/privacy_notice/add_edit.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
     <style type="text/css">
         .help_text{
             margin-left: 5px;
@@ -78,6 +78,6 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
     
 {% endblock scripts %}
\ No newline at end of file
diff --git a/smash/web/templates/privacy_notice/confirm_delete.html b/smash/web/templates/privacy_notice/confirm_delete.html
index 8e618e11025dea0fff578d6dca8546038dadf85f..5d8cf0d6c113a8b78668d309ee2d87c043438475 100644
--- a/smash/web/templates/privacy_notice/confirm_delete.html
+++ b/smash/web/templates/privacy_notice/confirm_delete.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
 
 {% endblock styles %}
 
@@ -55,7 +55,7 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
 
 {% endblock scripts %}
 
diff --git a/smash/web/templates/subject_import_data/edit.html b/smash/web/templates/subject_import_data/edit.html
index 06905a3d900327ae763b85130d2cf4f04eb327d1..62f9fbecba73da03f223ae94f4cfcbd47d90689f 100644
--- a/smash/web/templates/subject_import_data/edit.html
+++ b/smash/web/templates/subject_import_data/edit.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
 
     {% include "includes/datepicker.css.html" %}
 {% endblock styles %}
@@ -75,7 +75,7 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
 
     {% include "includes/datetimepicker.js.html" %}
 {% endblock scripts %}
diff --git a/smash/web/templates/subjects/add.html b/smash/web/templates/subjects/add.html
index bf01448f4625f7028478f21787460fabb27497d8..f4d47e0ebee5d2af80eafa1d8e90bfc57cd13bcb 100644
--- a/smash/web/templates/subjects/add.html
+++ b/smash/web/templates/subjects/add.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
 
     {% include "includes/datepicker.css.html" %}
     {% include "includes/datetimepicker.css.html" %}
@@ -99,7 +99,7 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
     <script>
         $(document).ready(function () {
 
diff --git a/smash/web/templates/subjects/confirm_delete.html b/smash/web/templates/subjects/confirm_delete.html
index 0cceb3e9550e58058c7106870efa24b68cc24cc9..a4548f6f4eb665c837023d617bfe70388a699060 100644
--- a/smash/web/templates/subjects/confirm_delete.html
+++ b/smash/web/templates/subjects/confirm_delete.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
     <style>
         table, th, td {
             border: 1px solid black;
@@ -82,7 +82,7 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
 
 {% endblock scripts %}
 
diff --git a/smash/web/templates/subjects/confirm_delete_study_subject.html b/smash/web/templates/subjects/confirm_delete_study_subject.html
index 927457de84334a0818ddffc007357dd32fc38375..618f278b9cf22c86cd9d782baead8e445b062001 100644
--- a/smash/web/templates/subjects/confirm_delete_study_subject.html
+++ b/smash/web/templates/subjects/confirm_delete_study_subject.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
     <style>
         table, th, td {
             border: 1px solid black;
@@ -82,7 +82,7 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
 
 {% endblock scripts %}
 
diff --git a/smash/web/templates/visit_import_data/edit.html b/smash/web/templates/visit_import_data/edit.html
index ad50e6e8db2e97fdb9ad3f666cdc99176e8e0480..88657aa848cbc183a3fb5a1573a859044cf7fa67 100644
--- a/smash/web/templates/visit_import_data/edit.html
+++ b/smash/web/templates/visit_import_data/edit.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
 
     {% include "includes/datepicker.css.html" %}
 {% endblock styles %}
@@ -75,7 +75,7 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
 
     {% include "includes/datetimepicker.js.html" %}
 {% endblock scripts %}
diff --git a/smash/web/templates/voucher_partner_sessions/add_edit.html b/smash/web/templates/voucher_partner_sessions/add_edit.html
index 73b82a9ed963c0a6b4b1f6272b29a8c5251167e4..4fd67f89347a1f300b576246687e238c689b1be7 100644
--- a/smash/web/templates/voucher_partner_sessions/add_edit.html
+++ b/smash/web/templates/voucher_partner_sessions/add_edit.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
     {% include "includes/datepicker.css.html" %}
     {% include "includes/datetimepicker.css.html" %}
 
@@ -74,7 +74,7 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
     {% include "includes/datepicker.js.html" %}
     {% include "includes/datetimepicker.js.html" %}
 
diff --git a/smash/web/templates/voucher_type_prices/add_edit.html b/smash/web/templates/voucher_type_prices/add_edit.html
index 2d7f024f9529bdc4214573ed871a0d04e0f8c920..83305ef7c2411d771c587a1279f590e3eb4e9c8f 100644
--- a/smash/web/templates/voucher_type_prices/add_edit.html
+++ b/smash/web/templates/voucher_type_prices/add_edit.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
     {% include "includes/datepicker.css.html" %}
     {% include "includes/datetimepicker.css.html" %}
 
@@ -75,7 +75,7 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
     {% include "includes/datepicker.js.html" %}
     {% include "includes/datetimepicker.js.html" %}
 
diff --git a/smash/web/templates/voucher_types/add_edit.html b/smash/web/templates/voucher_types/add_edit.html
index 484492034b2dfcd42c437116ec253f903c9afd2f..cb337d761f6df0b0cc28d91c2948f49655aa4ffd 100644
--- a/smash/web/templates/voucher_types/add_edit.html
+++ b/smash/web/templates/voucher_types/add_edit.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
 
 {% endblock styles %}
 
@@ -109,6 +109,6 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
 
 {% endblock scripts %}
\ No newline at end of file
diff --git a/smash/web/templates/vouchers/add_edit.html b/smash/web/templates/vouchers/add_edit.html
index 6c181944a4dc3723b901b2bad923f15736f1be8a..905aef4f2a5c01fed517a9276018ca621561504d 100644
--- a/smash/web/templates/vouchers/add_edit.html
+++ b/smash/web/templates/vouchers/add_edit.html
@@ -4,7 +4,7 @@
 
 {% block styles %}
     {{ block.super }}
-    <link rel="stylesheet" href="{% static 'AdminLTE/plugins/awesomplete/awesomplete.css' %}"/>
+    <link rel="stylesheet" href="{% static 'awesomplete/awesomplete.css' %}"/>
 
     <style type="text/css">
         .ui-datepicker-header {
@@ -124,7 +124,7 @@
 {% block scripts %}
     {{ block.super }}
 
-    <script src="{% static 'AdminLTE/plugins/awesomplete/awesomplete.min.js' %}"></script>
+    <script src="{% static 'awesomplete/awesomplete.min.js' %}"></script>
     <script type="text/javascript">
         $(".datepicker").datepicker({ dateFormat: 'yy-mm-dd' });
     </script>