8000 Stop using django.contrib.comments and django_comments_xtd by berkerpeksag · Pull Request #981 · python/pythondotorg · GitHub
[go: up one dir, main page]

Skip to content

Stop using django.contrib.comments and django_comments_xtd #981

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Aug 6, 2017
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix <title> when editing a job in job_form.html
  • Loading branch information
berkerpeksag committed Aug 6, 2017
commit 3665d81f04a8d167c781689b52a322c481899a7a
9 changes: 8 additions & 1 deletion templates/jobs/job_form.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
{% extends "jobs/base.html" %}
{% load boxes %}

{% block page_title %}Submit a Job | {{ SITE_INFO.site_name }}{% endblock %}
{% block page_title %}
{% if form_action == 'update' %}
Update {{ object.job_title }}
{% else %}
Submit a Job
{% endif %}
| {{ SITE_INFO.site_name }}
{% endblock %}

{% block body_attributes %}class="jobs job_form"{% endblock %}

Expand Down
0