Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-App-Alsijil
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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-App-Alsijil
Commits
35aeb91f
Commit
35aeb91f
authored
4 years ago
by
Julian
Browse files
Options
Downloads
Patches
Plain Diff
Change form title dynamically
parent
3983d8ac
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!48
Review use of Materialize
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
aleksis/apps/alsijil/templates/alsijil/manage_personal_note_filter.html
+20
-8
20 additions, 8 deletions
...lsijil/templates/alsijil/manage_personal_note_filter.html
with
20 additions
and
8 deletions
aleksis/apps/alsijil/templates/alsijil/manage_personal_note_filter.html
+
20
−
8
View file @
35aeb91f
...
...
@@ -2,10 +2,28 @@
{% extends "core/base.html" %}
{% load material_form i18n static %}
{% block browser_title %}{% blocktrans %}Manage personal note filter{% endblocktrans %}{% endblock %}
{% block page_title %}{% blocktrans %}Manage personal note filter{% endblocktrans %}{% endblock %}
{% block browser_title %}
{% if personal_note_filter %}
{% trans "Update personal note filter" %}
{% else %}
{% trans "Create personal note filter" %}
{% endif %}
{% endblock %}
{% block page_title %}
{% if personal_note_filter %}
{% trans "Update personal note filter" %}
{% else %}
{% trans "Create personal note filter" %}
{% endif %}
{% endblock %}
{% block content %}
<form
method=
"post"
>
{% csrf_token %}
{% form form=personal_note_filter_form %}{% endform %}
{% include "core/partials/save_button.html" %}
</form>
{% if personal_note_filter %}
<p>
<a
href=
"{% url 'delete_personal_note_filter' personal_note_filter.id %}"
...
...
@@ -15,10 +33,4 @@
</p>
{% endif %}
<form
method=
"post"
>
{% csrf_token %}
{% form form=personal_note_filter_form %}{% endform %}
{% include "core/save_button.html" %}
</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