Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Merge requests
!1087
Fix integration of django-oauth-toolkit with version ^2.0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix integration of django-oauth-toolkit with version ^2.0
fix/oauth-2.0
into
master
Overview
0
Commits
2
Pipelines
1
Changes
2
Merged
Jonathan Weth
requested to merge
fix/oauth-2.0
into
master
2 years ago
Overview
0
Commits
2
Pipelines
1
Changes
2
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
54eaf863
2 commits,
2 years ago
2 files
+
12
−
42
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
aleksis/core/templates/oauth2_provider/authorized-oob.html deleted
100644 → 0
+
0
−
36
Options
{% extends "core/base.html" %}
{% load i18n %}
{% block content %}
{% if not error %}
<div
class=
"container"
>
<div
class=
"card green"
>
<div
class=
"card-content white-text"
>
<div
class=
"material-icons iconify small left"
data-icon=
"mdi:check"
></div>
<span
class=
"card-title"
>
{% blocktrans %}Success!{% endblocktrans %}
</span>
<p>
{% trans "Please return to your application and enter this code:" %} {{ code }}
</p>
</div>
</div>
</div>
{% else %}
<div
class=
"container"
>
<div
class=
"card red"
>
<div
class=
"card-content white-text"
>
<div
class=
"material-icons iconify small left"
data-icon=
"mdi:alert-octagon-outline"
></div>
<span
class=
"card-title"
>
{% trans "Error" %}: {{ error.error }}
</span>
<p>
{{ error.description }}
</p>
<p>
Please verify if the application is configured correctly or contact one of your site administrators:
</p>
{% include "core/partials/admins_list.html" %}
</div>
</div>
</div>
{% endif %}
{% endblock %}
Loading