Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
A
Aspava
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
Aspava
Commits
6f262d48
Kaydet (Commit)
6f262d48
authored
May 05, 2019
tarafından
Batuhan Taşkaya
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Link model and feed user links
üst
f8dce46b
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
38 additions
and
20 deletions
+38
-20
0004_link.py
social/migrations/0004_link.py
+22
-0
models.py
social/models.py
+3
-0
home.html
social/templates/home.html
+6
-1
post.html
social/templates/repr/post.html
+1
-7
snippet.html
social/templates/repr/snippet.html
+5
-11
urls.py
social/urls.py
+1
-1
No files found.
social/migrations/0004_link.py
0 → 100644
Dosyayı görüntüle @
6f262d48
# Generated by Django 2.2.1 on 2019-05-05 11:42
from
django.db
import
migrations
,
models
import
django.db.models.deletion
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'social'
,
'0003_socialuser_avatar'
),
]
operations
=
[
migrations
.
CreateModel
(
name
=
'Link'
,
fields
=
[
(
'sharable_ptr'
,
models
.
OneToOneField
(
auto_created
=
True
,
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
parent_link
=
True
,
primary_key
=
True
,
serialize
=
False
,
to
=
'social.Sharable'
)),
(
'url'
,
models
.
URLField
()),
],
bases
=
(
'social.sharable'
,),
),
]
social/models.py
Dosyayı görüntüle @
6f262d48
...
...
@@ -28,3 +28,6 @@ class Post(Sharable):
class
Snippet
(
Sharable
):
text
=
models
.
TextField
()
class
Link
(
Sharable
):
url
=
models
.
URLField
()
social/templates/home.html
Dosyayı görüntüle @
6f262d48
...
...
@@ -11,7 +11,12 @@
<p><a
href=
"{% url 'logout' %}"
>
logout
</a></p>
{% load renderer %}
{% for item in feed %}
{% as_html item %}
<div>
<fieldset>
<legend><a
href=
"{% url 'profile' item.author %}"
>
{{ item.author }}
</a></legend>
{% as_html item %}
</fieldset>
</div>
{% endfor %}
{% else %}
<p>
You are not logged in
</p>
...
...
social/templates/repr/post.html
Dosyayı görüntüle @
6f262d48
<div>
<fieldset>
<legend>
{{ item.author }}
</legend>
<p>
{{ item.text }}
</p><br>
-- wrote this at {{ item.pub_date }};
</fieldset>
</div>
<p>
{{ item.text }}
</p><br>
social/templates/repr/snippet.html
Dosyayı görüntüle @
6f262d48
<div>
<fieldset>
<legend>
{{ item.author }}
</legend>
<pre>
<code
class=
"python"
>
<pre>
<code
class=
"python"
>
{{ item.text }}
</code>
</pre>
<br>
-- wrote this at {{ item.pub_date }};
</fieldset>
</div>
</code>
</pre>
social/urls.py
Dosyayı görüntüle @
6f262d48
...
...
@@ -84,7 +84,7 @@ class PatternManager:
class
SocialPatterns
(
PatternManager
,
UserList
):
home
=
""
,
Home
user
=
"people/<slug>/"
,
Profile
profile
=
"people/<slug>/"
,
Profile
register
=
"accounts/register/"
,
Register
includes
=
{
...
...
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