Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 2 additions & 24 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,30 +34,8 @@ dist
.ruff_cache
.on-save.json

rdmo/core/static/
rdmo/management/static
rdmo/projects/static/

rdmo/core/static/core/css/app-bs53.css
rdmo/core/static/core/js/app-bs53.js
rdmo/core/static/core/js/base.js
rdmo/core/static/core/js/base.js.LICENSE.txt
rdmo/core/static/core/js/base-bs53.js
rdmo/core/static/core/js/base-bs53.js.LICENSE.txt
rdmo/core/static/core/js/bootstrap-bs53.js
rdmo/core/static/core/js/bootstrap-bs53.js.LICENSE.txt
rdmo/core/static/core/css/base.css
rdmo/core/static/core/css/base-bs53.css
rdmo/core/static/core/css/bootstrap.css
rdmo/core/static/core/css/bootstrap-bs53.css
rdmo/core/static/core/fonts

rdmo/projects/static/projects/css/interview.css
rdmo/projects/static/projects/css/projects.css
rdmo/projects/static/projects/css/project.css
rdmo/projects/static/projects/fonts/
rdmo/projects/static/projects/js/interview.js
rdmo/projects/static/projects/js/interview.js.LICENSE.txt
rdmo/projects/static/projects/js/projects.js
rdmo/projects/static/projects/js/projects.js.LICENSE.txt
rdmo/projects/static/projects/js/project.js
rdmo/projects/static/projects/js/project.js.LICENSE.txt
screenshots
1 change: 0 additions & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ def fixtures():
'domain',
'groups',
'options',
'overlays',
'projects',
'questions',
'sites',
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,8 @@ dependencies = [
"defusedxml>=0.7.1,<1.0",
"django>=5.2.8,<6.0",
"django-cleanup>=8.0,<10.0",
"django-compressor>=4.4,<5.0",
"django-extensions>=3.2,<5.0",
"django-filter>=23.2,<26.0",
"django-libsass>=0.9,<1.0",
"django-mathfilters>=1.0,<2.0",
"django-mptt>=0.16.0,<1.0.0",
"django-settings-export>=1.2,<2.0",
Expand Down Expand Up @@ -231,7 +229,7 @@ default.extend-ignore-re = [
"(?Rm)^.*(#|//)\\s*spellchecker:disable-line$", # for .py files
"(?Rm)^.*<!-- spellchecker:disable-line -->$", # for .html files
]
files.extend-exclude = ["rdmo/core/templates/core/bs53/home.html"]
files.extend-exclude = ["rdmo/core/templates/core/home.html"]

[tool.check-wheel-contents] # Ref: https://github.com/jwodder/check-wheel-contents
ignore = [
Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/account/account_token.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}

{% block main %}
Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/account/email.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}

{% block main %}
Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/account/email_confirm.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}
{% load account %}

Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/account/login.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}

{% block main %}
Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/account/logout.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}

{% block main %}
Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/account/password_change.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}
{% load core_tags %}

Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/account/password_reset.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}
{% load core_tags %}

Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/account/password_reset_done.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}

{% block main %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}
{% load core_tags %}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}
{% load core_tags %}

Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/account/password_set.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}

{% block main %}
Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/account/signup.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}

{% block main %}
Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/account/terms_of_use.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}

{% block main %}
Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/account/verification_sent.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}

{% block main %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}

{% block content %}
Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/profile/profile_remove_closed.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}

{% block main %}
Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/profile/profile_remove_failed.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}

{% block main %}
Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/profile/profile_remove_form.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}
{% load core_tags %}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}

{% block main %}
Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/profile/profile_update_closed.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}

{% block main %}
Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/profile/profile_update_form.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}
{% load core_tags %}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}
{% load account %}
{% load socialaccount %}
Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/socialaccount/connections.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}

{% block main %}
Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/socialaccount/login.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}

{% block head_title %}
Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/socialaccount/login_cancelled.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}
{% load account %}
{% load socialaccount %}
Expand Down
2 changes: 1 addition & 1 deletion rdmo/accounts/templates/socialaccount/signup.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'core/bs53/main.html' %}
{% extends 'core/main.html' %}
{% load i18n %}

{% block main %}
Expand Down
86 changes: 0 additions & 86 deletions rdmo/core/assets/js/_bs53/components/Modal.js

This file was deleted.

2 changes: 0 additions & 2 deletions rdmo/core/assets/js/_bs53/components/index.js

This file was deleted.

File renamed without changes.
5 changes: 1 addition & 4 deletions rdmo/core/assets/js/base.js
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
import 'bootstrap-sass'

window.$ = require('jquery')
window.Cookies = require('js-cookie')
// This file is intentionally left empty.
Loading
Loading