Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-App-Paweljong
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
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
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
Teckids
Projekt Hack-n-Fun
AlekSIS-App-Paweljong
Commits
c8a52b00
Commit
c8a52b00
authored
3 years ago
by
Tom Teichler
Browse files
Options
Downloads
Patches
Plain Diff
Add custom template for consent
parent
d4c0e2f0
No related branches found
No related tags found
1 merge request
!1
Reformat and cleanup
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
aleksis/apps/paweljong/templates/paweljong/event/register_wizard_consent.html
+47
-0
47 additions, 0 deletions
...ng/templates/paweljong/event/register_wizard_consent.html
with
47 additions
and
0 deletions
aleksis/apps/paweljong/templates/paweljong/event/register_wizard_consent.html
0 → 100644
+
47
−
0
View file @
c8a52b00
{% extends "core/base.html" %}
{% load material_form i18n %}
{% block browser_title %}{{ browser_title }}{% endblock %}
{% block page_title %}{{ page_title }}{% endblock %}
{% block content %}
<div
class=
"row"
>
<div
class=
"col s12"
>
<div
class=
"card info"
>
<div
class=
"card-content"
>
<span
class=
"card-title"
>
{{ info_title }}
</span>
<p>
{{ info_text | safe }}
</p>
</div>
</div>
</div>
</div>
<form
method=
"post"
enctype=
"multipart/form-data"
>
{% csrf_token %}
{{ wizard.form.media }}
{{ wizard.management_form }}
{% if wizard.form.forms %}
{{ wizard.form.management_form }}
{% for form in wizard.form.forms %}
{% form form=form %}{% endform %}
{% endfor %}
{% else %}
{% form form=wizard.form %}{% endform %}
{% endif %}
{% if wizard.steps.prev %}
<button
type=
"submit"
value=
"{{ wizard.steps.first }}"
class=
"btn waves-effect waves-light color-primary"
name=
"wizard_goto_step"
>
<i
class=
"material-icons left"
>
first_page
</i>
{% trans "first step" %}
</button>
<button
type=
"submit"
value=
"{{ wizard.steps.prev }}"
class=
"btn waves-effect waves-light color-secondary"
name=
"wizard_goto_step"
>
<i
class=
"material-icons left"
>
arrow_back_ios
</i>
{% trans "previous step" %}
</button>
{% endif %}
{% trans "Next" as caption %}
{% include "core/partials/save_button.html" with caption=caption icon="navigate_next" %}
</form>
{% endblock %}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment