Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
6ff50012
Kaydet (Commit)
6ff50012
authored
Eki 18, 2015
tarafından
Ville Skyttä
Kaydeden (comit)
Tim Graham
Eki 19, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #25565 -- Removed action="" from admin forms (invalid in HTML5).
üst
df0a446f
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
change_list.html
django/contrib/admin/templates/admin/change_list.html
+1
-1
delete_confirmation.html
...go/contrib/admin/templates/admin/delete_confirmation.html
+1
-1
delete_selected_confirmation.html
...b/admin/templates/admin/delete_selected_confirmation.html
+1
-1
search_form.html
django/contrib/admin/templates/admin/search_form.html
+1
-1
password_change_form.html
...ib/admin/templates/registration/password_change_form.html
+1
-1
password_reset_confirm.html
.../admin/templates/registration/password_reset_confirm.html
+1
-1
password_reset_form.html
...rib/admin/templates/registration/password_reset_form.html
+1
-1
No files found.
django/contrib/admin/templates/admin/change_list.html
Dosyayı görüntüle @
6ff50012
...
...
@@ -81,7 +81,7 @@
{% endif %}
{% endblock %}
<form
id=
"changelist-form"
action=
""
method=
"post"
{%
if
cl
.
formset
.
is_multipart
%}
enctype=
"multipart/form-data"
{%
endif
%}
novalidate
>
{% csrf_token %}
<form
id=
"changelist-form"
method=
"post"
{%
if
cl
.
formset
.
is_multipart
%}
enctype=
"multipart/form-data"
{%
endif
%}
novalidate
>
{% csrf_token %}
{% if cl.formset %}
<div>
{{ cl.formset.management_form }}
</div>
{% endif %}
...
...
django/contrib/admin/templates/admin/delete_confirmation.html
Dosyayı görüntüle @
6ff50012
...
...
@@ -33,7 +33,7 @@
{% include "admin/includes/object_delete_summary.html" %}
<h2>
{% trans "Objects" %}
</h2>
<ul>
{{ deleted_objects|unordered_list }}
</ul>
<form
action=
""
method=
"post"
>
{% csrf_token %}
<form
method=
"post"
>
{% csrf_token %}
<div>
<input
type=
"hidden"
name=
"post"
value=
"yes"
/>
{% if is_popup %}
<input
type=
"hidden"
name=
"{{ is_popup_var }}"
value=
"1"
/>
{% endif %}
...
...
django/contrib/admin/templates/admin/delete_selected_confirmation.html
Dosyayı görüntüle @
6ff50012
...
...
@@ -34,7 +34,7 @@
{% for deletable_object in deletable_objects %}
<ul>
{{ deletable_object|unordered_list }}
</ul>
{% endfor %}
<form
action=
""
method=
"post"
>
{% csrf_token %}
<form
method=
"post"
>
{% csrf_token %}
<div>
{% for obj in queryset %}
<input
type=
"hidden"
name=
"{{ action_checkbox_name }}"
value=
"{{ obj.pk|unlocalize }}"
/>
...
...
django/contrib/admin/templates/admin/search_form.html
Dosyayı görüntüle @
6ff50012
{% load i18n admin_static %}
{% if cl.search_fields %}
<div
id=
"toolbar"
><form
id=
"changelist-search"
action=
""
method=
"get"
>
<div
id=
"toolbar"
><form
id=
"changelist-search"
method=
"get"
>
<div>
<!-- DIV needed for valid HTML -->
<label
for=
"searchbar"
><img
src=
"{% static "
admin
/
img
/
search
.
svg
"
%}"
alt=
"Search"
/></label>
<input
type=
"text"
size=
"40"
name=
"{{ search_var }}"
value=
"{{ cl.query }}"
id=
"searchbar"
/>
...
...
django/contrib/admin/templates/registration/password_change_form.html
Dosyayı görüntüle @
6ff50012
...
...
@@ -14,7 +14,7 @@
{% block content %}
<div
id=
"content-main"
>
<form
action=
""
method=
"post"
>
{% csrf_token %}
<form
method=
"post"
>
{% csrf_token %}
<div>
{% if form.errors %}
<p
class=
"errornote"
>
...
...
django/contrib/admin/templates/registration/password_reset_confirm.html
Dosyayı görüntüle @
6ff50012
...
...
@@ -16,7 +16,7 @@
<p>
{% trans "Please enter your new password twice so we can verify you typed it in correctly." %}
</p>
<form
action=
""
method=
"post"
>
{% csrf_token %}
<form
method=
"post"
>
{% csrf_token %}
{{ form.new_password1.errors }}
<p
class=
"aligned wide"
><label
for=
"id_new_password1"
>
{% trans 'New password:' %}
</label>
{{ form.new_password1 }}
</p>
{{ form.new_password2.errors }}
...
...
django/contrib/admin/templates/registration/password_reset_form.html
Dosyayı görüntüle @
6ff50012
...
...
@@ -14,7 +14,7 @@
<p>
{% trans "Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one." %}
</p>
<form
action=
""
method=
"post"
>
{% csrf_token %}
<form
method=
"post"
>
{% csrf_token %}
{{ form.email.errors }}
<p><label
for=
"id_email"
>
{% trans 'Email address:' %}
</label>
{{ form.email }}
<input
type=
"submit"
value=
"{% trans 'Reset my password' %}"
/></p>
</form>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment