Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
K
kulnug
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
kulnug
Commits
a2b8b5db
Kaydet (Commit)
a2b8b5db
authored
Nis 18, 2019
tarafından
Muhammed H. Alkan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Support for markdown.
üst
5004b351
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
kulnug.py
kulnug.py
+1
-1
index.html
templates/index.html
+1
-1
read_diary.html
templates/read_diary.html
+1
-1
No files found.
kulnug.py
Dosyayı görüntüle @
a2b8b5db
...
...
@@ -52,7 +52,7 @@ def add_page_successful():
"""
if
request
.
method
==
"POST"
:
diary_content
=
request
.
form
[
"diaryContent"
]
new_diary
=
Diary
(
content
=
diary_content
)
new_diary
=
Diary
(
content
=
markdown
(
diary_content
)
)
db
.
session
.
add
(
new_diary
)
db
.
session
.
commit
()
return
render_template
(
"add_successful.html"
)
...
...
templates/index.html
Dosyayı görüntüle @
a2b8b5db
...
...
@@ -34,7 +34,7 @@
<div
class=
"card"
style=
"width: 18rem;"
>
<div
class=
"card-body"
>
<h5
class=
"card-title"
>
Diary {{ diary.id }}
</h5>
<p
class=
"card-text"
>
{{ diary.content[:20] }}...
</p>
<p
class=
"card-text"
>
{{ diary.content[:20]
|striptags|title
}}...
</p>
<a
href=
"/diaries/{{ diary.id }}"
class=
"card-link"
>
Read more
</a>
<p
class=
"card-text"
><small
class=
"text-muted"
>
Posted at {{ diary.date.strftime('%y/%m/%d') }}
</small></p>
</div>
...
...
templates/read_diary.html
Dosyayı görüntüle @
a2b8b5db
...
...
@@ -32,7 +32,7 @@
<div
class=
"center"
>
<h1>
Diary {{ diary.id }}
</h1>
<p>
{{ diary.content }}
</p>
{{ diary.content|safe }}
<a
href=
"/"
class=
"text-decoration-none"
>
← Go Back
</a>
</div>
...
...
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