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
!874
Resolve "Provide base templates for e-mails generated by apps"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Provide base templates for e-mails generated by apps"
439-provide-base-templates-for-e-mails-generated-by-apps
into
master
Overview
2
Commits
8
Pipelines
8
Changes
5
All threads resolved!
Hide all comments
Merged
Lukas Weichelt
requested to merge
439-provide-base-templates-for-e-mails-generated-by-apps
into
master
3 years ago
Overview
2
Commits
8
Pipelines
8
Changes
5
All threads resolved!
Hide all comments
Expand
Closes
#439 (closed)
Edited
3 years ago
by
Jonathan Weth
0
0
Merge request reports
Viewing commit
0179365e
Prev
Next
Show latest version
5 files
+
68
−
94
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
Verified
0179365e
Restructure all email templates and base on new base template
· 0179365e
Jonathan Weth
authored
3 years ago
aleksis/core/templates/templated_email/celery_failure.email
+
43
−
35
Options
{% extends "templated_email/base.email" %}
{% load i18n %}
{% extends "base.html" %}
{% block subject %}
{% blocktrans with task_name=task_name%} Celery task {{ task_name }} failed!{% endblocktrans %}
{% endblock %}
{% block plain %}
{% blocktrans with task_name=task_name %}
the celery task {{ task_name }} failed with following information:
{% endblocktrans %}
{% block subject_content %}{% blocktrans with task_name=task_name %}Celery task {{ task_name }} failed!{% endblocktrans %}{% endblock %}
{% block plain_content %}
{% blocktrans with task_name=task_name %}the celery task {{ task_name }} failed with following information:{% endblocktrans %}
{% blocktrans with task_name=task_name task=task task_id=task_id exception=exception args=args kwargs=kwargs traceback=traceback %}
* Task name: {{task_name}}
* Task: {{task}}
* Id of the task: {{task_id}}
* Exception instance raised: {{ exception }}
* Positional arguments the task was called with: {{ args }}
* Keyword arguments the task was called with: {{ kwargs }}
* Stack trace object: {{ traceback }}
{% endblocktrans %}
{% endblock %}
* {% trans "Task" %}: {{ task_name }}
* {% trans "Task ID" %}: {{ task_id }}
* {% trans "Raised exception" %}: {{ exception }}
* {% trans "Positional arguments" %}:
{% for arg in args %}- {{ arg }}
{% endfor %}
* {% trans "Keyword arguments" %}:
{% for key, value in kwargs.items %}- {{ key }}: {{ value }}
{% endfor %}
{{ traceback }}{% endblock %}
{% block html_content %}
<p>
{% blocktrans with task_name=task_name %}
the celery task {{ task_name }} failed with following information:
{% endblocktrans %}
</p>
{% block html %}
<p>
{% blocktrans with task_name=task_name %}
the celery task {{ task_name }} failed with following information:
{% endblocktrans %}
</p>
<ul>
<li>{% trans "Task" %}: {{ task_name }}</li>
<li>{% trans "Task ID" %}: {{ task_id }}</li>
<li>{% trans "Raised exception" %}: {{ exception }}</li>
<li>{% trans "Positional arguments" %}:
<ol>
{% for arg in args %}
<li>{{ arg }}</li>
{% endfor %}
</ol>
</li>
<li>{% trans "Keyword arguments" %}:
<ul>
{% for key, value in kwargs.items %}
<li>{{ key }}: {{ value }}</li>
{% endfor %}
</ul>
</li>
</ul>
<ul>
{% blocktrans with task_name=task_name task=task task_id=task_id exception=exception args=args kwargs=kwargs traceback=traceback %}
<li>Task name: {{task_name}}</li>
<li>Task: {{task}}</li>
<li>Id of the task: {{task_id}}</li>
<li>Exception instance raised: {{ exception }}</li>
<li>Positional arguments the task was called with: {{ args }}</li>
<li>Keyword arguments the task was called with: {{ kwargs }}</li>
<li>Stack trace object: {{ traceback }}</li>
</ul>
{% endblocktrans %}
<code>
{{ traceback|linebreaksbr }}
</code>
{% endblock %}
Loading