#### Repository https://github.com/python #### What Will I Learn? - Display forum data - Create and implement List view #### Requirements - Basic Python - Install Python 3 - Install Django #### Resources - Python - https://www.python.org/ - Django- https://www.djangoproject.com/ - Bootstrap 4 - https://getbootstrap.com/docs/4.0/getting-started/introduction/ #### Difficulty Basic ### Tutorial Content Hi everyone, this [tutorial](https://steemit.com/utopian-io/@duski.harahap/create-a-forum-application-using-django-7-unique-slug-and-manage-modules-in-admin-dashboard-1553268749861). We will continue the previous tutorial. In the previous tutorial, we have made settings on the admin page for modules in our forum application. This tutorial will discuss new features. we have made module settings, now it is our job to display the data in the forum into our forum application. For that, we just start this tutorial. ### Display forums Previously, we discussed how to set the module in the admin. Now we will learn how to make displaying forum data in the application that we have created. We will do first is to make a path for the home page of the module forums. Because the module we are going to use is the model forums, we will make the **URL** in **forums/urls.py**. We have created **urls.py** in the previous tutorial. For more details, We can see the code below: **forums/urls.py** ``` from django.urls import path from .views import ForumCreate, ForumListView // import the class urlpatterns = [ path(' ', ForumListView.as_view(), name='forum-list'), // define path path('add/', ForumCreate.as_view(), name='forum-add') ] ``` ***Noted***: because we will use the forums module, our URL will start at **'/ forums'** - Because we will display the forum data on the main page of the forums we will add the path ```' '```. So when we access the path ```/forums```, we can write it like this ```path(' ', ForumListView.as_view(), name='forum-list')```. - As we have done before we define the class from the view that will be rendered in the path we are going to in the following ```ForumListView.as_view()```. The class name we will use is ***ForumListView.*** - To use the **ForumListView** class, we must import it first. We can import it through ```from .views import ForumListView``` and we can name the alias like this ```name='forum-list'```. <br> - **Create List View** We have *used* and *imported* the class. But we have not defined and made it in **forums/views.py.** We will make the class like the code below: **forums/views.py.** ``` from django.shortcuts import render from django.views.generic import CreateView, ListView // import the generic view from .models import Forum from django.contrib.auth.decorators import login_required from django.utils.decorators import method_decorator @method_decorator(login_required, name='dispatch') class ForumListView(ListView): // Define the class model = Forum class ForumCreate(CreateView): model = Forum fields = ['title','desc'] def form_valid(self, form): form.instance.user = self.request.user return super().form_valid(form) ``` - We will use the generic view provided by Django. we can import it like this ```from django.views.generic import CreateView, ListView```. In the previous tutorial, we created a ***CreateView*** reference to use in the ***ForumCreate(CreateView)*** class. - Then for the ***ForumListView*** class we can use the new reference, namely ***ListView*** and pass it as a parameter in the ```class ForumCreate(CreateView)```. - And for the model we use we can define it like this ```model = Forum```. Make sure we have imported the Forum ```from .models import Forum```. If what we do is successful then we can see a ***warning*** because there is a template that we haven't created. like the picture below:  We can see in the picture above, our system expects a template ```forum/forum_list.html```. This is one of the conveniences of using **ListView**, all the *logic* and *views* have been provided and made. we only need to make the template file. <br> - **Create a list view template** We have defined ***List view***. Now we will create a template to render the data that will be used. We will still use the base layout that we have made in the previous [tutorial](https://steemit.com/utopian-io/@duski.harahap/create-a-forum-application-using-django-3-base-template-login-and-register-system-1552311993977). For more details, we can see the template as below: ``` {% extends "base.html" %} {% block title %} List Forum{% endblock %} {% block content %} <div class="jumbotron"> <h1>Forums</h1> <ul> {% for forum in object_list %} // Looping object <li>{{forum.title}}</li> {% endfor %} </ul> </div> {% endblock%} ``` - to render the data we can use for ```{% for forum in object_list %}```. We can use the ***default*** variable as an alias of objects in the ***ListView.*** The default name we use is ```object_list```. - If there is no error then we can see the results as follows:  We can see in the picture above we succeeded to render the data in our database. this means the list view function that we created has been successful. - **Change the default object ```object_list```**: If you want to change the name of the default object, you can replace it like the example below: ``` class ForumListView(ListView): model = Forum context_object_name = "objForums" ``` .gif) Make sure there are no errors when the object name is changed <br> - **Connected *CreateView* and *ListView*** Now we will test whether the create forum function is successfully connected to the list view, to test it we can see the demonstration below: .gif) Now we have successfully added a new forum and connected it in the list view. <br> - **Query Set** We can manage the data that appears on the page, like when we use queries in ***MySQL***, we certainly know *orderby, groupby limit and others*. In the **List View** class we actually also use the query set function, but by default the query set is set like the code below: ``` class ForumListView(ListView): model = Forum context_object_name = "objForums" queryset = Forum.objects.all() // default queryset ``` - by ***default*** we retrieve data with the ```all()``` method, we can replace it with ```order_by()``` to sort the ```filter()``` data to do a filter and ```limit()``` to limit the data. - We not only can render titles. we also render other data as follows: ``` {% extends "base.html" %} {% block title %} List Forum{% endblock %} {% block content %} <div class="jumbotron"> <h1>Forums</h1> <ul> {% for forum in objForums %} <li>{{forum.title}} | <b>{{forum.user}}</b> | <span style="font-size: 12px;"><i>{{forum.created_at}}</i></span></li><br> {% endfor %} </ul> </div> {% endblock%} ``` .gif) We can see in the picture above we have succeeded display of our data more detailed. for the query set section, we will discuss the implementation more in the next tutorial. thank you ### Curriculum - **Class-based views** [Tutorial Django - Class based views #1 : Installation and configuration Django, Using a template system](https://steemit.com/utopian-io/@duski.harahap/django-tutorial-class-based-view-1-installation-and-configuration-django-using-a-template-system-1545837443632) [Tutorial Django - Class based view #2 : Use Class based view method and Get and Post method]( https://steemit.com/utopian-io/@duski.harahap/django-tutorial-class-based-view-2-use-class-based-view-method-and-get-and-post-method-1546448948207) [Tutorial Django- Class based view #3 : Authentication in Django and Urls Protection globally and specifically]( https://steemit.com/utopian-io/@duski.harahap/django-tutorial-class-based-view-3-authentication-in-django-and-urls-protection-globally-and-specifically-1546614192675) <br> - **Forum app** [Create a forum application using django #1 : Init projects and dependencies and Database schema]( https://steemit.com/utopian-io/@duski.harahap/create-a-forum-application-using-django-1-init-projects-and-dependencies-and-database-schema-1551711163679) [Create a forum application using django #2: Template system and Class-based view implementation](https://steemit.com/utopian-io/@duski.harahap/create-a-forum-application-using-django-2-template-system-and-class-based-view-implementation-1552057536737) [Create a forum application using django #3: Base template, Login and Register system](https://steemit.com/utopian-io/@duski.harahap/create-a-forum-application-using-django-3-base-template-login-and-register-system-1552311993977) [Create a forum application using django #4: Admin dashboard ang setting redirect]( https://steemit.com/utopian-io/@duski.harahap/create-a-forum-application-using-django-4-admin-dashboard-ang-setting-redirect) #### Proof of work done https://github.com/milleaduski/forums-django
author | duski.harahap | ||||||
---|---|---|---|---|---|---|---|
permlink | create-a-forum-application-using-django-8-display-forum-data-and-create-and-implement-list-view-1553525769014 | ||||||
category | utopian-io | ||||||
json_metadata | {"app":"steemit/0.1","format":"markdown","image":["https://ipfs.busy.org/ipfs/QmcCdrsmSm4fq11Ak4RvFFVrZ4SMDbtGmS7DhzbLeV9wkd","https://cdn.steemitimages.com/DQmSLtFpMAxCZjZQpNwUws4BmxSHFtcoXsMjMQM71w8sMwP/ezgif.com-video-to-gif.gif","https://cdn.steemitimages.com/DQmNq6buWYhRtG4BFKAXjk22LkzTJCdEndZToNcCKd7YLRJ/ezgif.com-video-to-gif%20(2).gif","https://cdn.steemitimages.com/DQmTT1HdacEcr4uEq4XfSXWYQAxYzc47XREA8qrhrpDEwfi/ezgif.com-video-to-gif%20(1).gif","https://cdn.steemitimages.com/DQmTANmBrQ2BsdxLbwnC8tNwP4ZXetXFY4r1a78v4pd5eK2/ezgif.com-video-to-gif%20(3).gif"],"tags":["utopian-io","tutorials","python","web","django"],"links":["https://github.com/python","https://www.python.org/","https://www.djangoproject.com/","https://getbootstrap.com/docs/4.0/getting-started/introduction/","https://steemit.com/utopian-io/@duski.harahap/create-a-forum-application-using-django-7-unique-slug-and-manage-modules-in-admin-dashboard-1553268749861","https://steemit.com/utopian-io/@duski.harahap/create-a-forum-application-using-django-3-base-template-login-and-register-system-1552311993977","https://steemit.com/utopian-io/@duski.harahap/django-tutorial-class-based-view-1-installation-and-configuration-django-using-a-template-system-1545837443632","https://steemit.com/utopian-io/@duski.harahap/django-tutorial-class-based-view-2-use-class-based-view-method-and-get-and-post-method-1546448948207","https://steemit.com/utopian-io/@duski.harahap/django-tutorial-class-based-view-3-authentication-in-django-and-urls-protection-globally-and-specifically-1546614192675","https://steemit.com/utopian-io/@duski.harahap/create-a-forum-application-using-django-1-init-projects-and-dependencies-and-database-schema-1551711163679","https://steemit.com/utopian-io/@duski.harahap/create-a-forum-application-using-django-2-template-system-and-class-based-view-implementation-1552057536737","https://steemit.com/utopian-io/@duski.harahap/create-a-forum-application-using-django-4-admin-dashboard-ang-setting-redirect","https://github.com/milleaduski/forums-django"]} | ||||||
created | 2019-03-25 14:56:18 | ||||||
last_update | 2019-03-25 15:10:24 | ||||||
depth | 0 | ||||||
children | 4 | ||||||
last_payout | 2019-04-01 14:56:18 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 27.172 HBD | ||||||
curator_payout_value | 9.072 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 9,561 | ||||||
author_reputation | 60,094,717,098,672 | ||||||
root_title | "Create a forum application using django #8: Display forum data and Create and implement List view" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 100,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 81,923,123 | ||||||
net_rshares | 58,021,695,138,520 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tombstone | 0 | 3,869,461,900,339 | 16.12% | ||
rufans | 0 | 20,516,904,491 | 100% | ||
marina007 | 0 | 508,058,360 | 2% | ||
techslut | 0 | 77,613,526,283 | 20% | ||
bukiland | 0 | 379,355,455 | 1.1% | ||
minersean | 0 | 7,316,727,459 | 75% | ||
erikaflynn | 0 | 14,211,334,688 | 35% | ||
miniature-tiger | 0 | 90,601,931,972 | 50% | ||
aleister | 0 | 7,341,914,609 | 15% | ||
jakipatryk | 0 | 14,850,273,420 | 50% | ||
jga | 0 | 2,374,869,651 | 20.15% | ||
oxiecuador | 0 | 151,045,587 | 5% | ||
helo | 0 | 46,196,259,887 | 18.26% | ||
walnut1 | 0 | 33,694,346,101 | 20.15% | ||
lorenzor | 0 | 1,154,362,001 | 10.07% | ||
suesa | 0 | 112,063,358,220 | 25% | ||
codingdefined | 0 | 26,310,736,420 | 18.26% | ||
tsoldovieri | 0 | 1,453,311,521 | 10.07% | ||
bachuslib | 0 | 20,993,615,472 | 100% | ||
tykee | 0 | 11,652,809,142 | 20.15% | ||
steemitri | 0 | 119,140,248,444 | 100% | ||
iamphysical | 0 | 14,647,833,898 | 90% | ||
felixrodriguez | 0 | 684,209,529 | 7.05% | ||
leir | 0 | 2,088,495,524 | 50% | ||
azulear | 0 | 485,555,879 | 100% | ||
rehan12 | 0 | 11,385,948,537 | 4.03% | ||
silviu93 | 0 | 5,255,609,618 | 20.15% | ||
jadabug | 0 | 2,056,859,091 | 1% | ||
dakeshi | 0 | 1,360,135,887 | 20.15% | ||
crokkon | 0 | 66,165,695,496 | 50% | ||
espoem | 0 | 60,521,644,839 | 30% | ||
mcfarhat | 0 | 14,152,211,744 | 7.3% | ||
vishalsingh4997 | 0 | 168,503,099 | 20.15% | ||
loshcat | 0 | 2,567,376,150 | 100% | ||
elear | 0 | 6,356,305,867 | 40.3% | ||
zoneboy | 0 | 22,269,293,345 | 100% | ||
carlos84 | 0 | 1,095,372,542 | 20.15% | ||
che-shyr | 0 | 993,119,673 | 50% | ||
utopian-io | 0 | 51,898,535,210,015 | 40.3% | ||
shammi | 0 | 5,787,001,353 | 90% | ||
jaff8 | 0 | 44,923,057,173 | 18.26% | ||
awesome-gadgets | 0 | 1,387,374,068 | 100% | ||
amestyj | 0 | 829,272,505 | 20.15% | ||
greenorange | 0 | 548,107,269 | 100% | ||
mcyusuf | 0 | 2,540,560,636 | 20.15% | ||
alexs1320 | 0 | 35,549,397,617 | 25% | ||
gentleshaid | 0 | 32,118,945,567 | 40.3% | ||
ivymalifred | 0 | 316,811,944 | 10.07% | ||
ennyta | 0 | 147,102,195 | 10.07% | ||
dedicatedguy | 0 | 45,972,768,621 | 100% | ||
amosbastian | 0 | 67,239,334,161 | 18.26% | ||
eliaschess333 | 0 | 1,930,695,183 | 10.07% | ||
scienceangel | 0 | 66,313,347,139 | 50% | ||
portugalcoin | 0 | 14,589,292,451 | 15% | ||
abandi | 0 | 609,395,129 | 100% | ||
sargoon | 0 | 1,329,876,665 | 20.15% | ||
best-strategy | 0 | 543,922,565 | 100% | ||
tobias-g | 0 | 141,773,332,488 | 38% | ||
miguelangel2801 | 0 | 120,558,480 | 10.07% | ||
didic | 0 | 29,800,902,309 | 25% | ||
emiliomoron | 0 | 757,474,550 | 10.07% | ||
celmor | 0 | 550,539,138 | 100% | ||
arac | 0 | 922,126,106 | 100% | ||
endopediatria | 0 | 100,279,940 | 4.03% | ||
tomastonyperez | 0 | 2,328,684,740 | 10.07% | ||
elvigia | 0 | 2,002,917,337 | 10.07% | ||
jubreal | 0 | 2,786,507,559 | 40.3% | ||
ezravandi | 0 | 3,498,506,301 | 1% | ||
yu-stem | 0 | 10,122,940,568 | 25% | ||
luiscd8a | 0 | 1,532,905,924 | 80% | ||
road2horizon | 0 | 9,832,346,540 | 10% | ||
geadriana | 0 | 80,876,578 | 3.02% | ||
josedelacruz | 0 | 903,478,709 | 10.07% | ||
joseangelvs | 0 | 310,885,207 | 20.15% | ||
viannis | 0 | 284,394,759 | 10.07% | ||
rollthedice | 0 | 4,368,481,810 | 40.3% | ||
erickyoussif | 0 | 556,498,699 | 20.15% | ||
finforum.net | 0 | 480,260,205 | 100% | ||
malia88 | 0 | 480,312,408 | 100% | ||
wenzip | 0 | 480,248,212 | 100% | ||
anaestrada12 | 0 | 3,424,205,904 | 20.15% | ||
boyarovkostya | 0 | 480,295,905 | 100% | ||
izydorjasiski | 0 | 480,239,732 | 100% | ||
grabowskig | 0 | 480,280,493 | 100% | ||
joelsegovia | 0 | 704,596,561 | 10.07% | ||
karinegevorgyan | 0 | 480,235,361 | 100% | ||
jesusfl17 | 0 | 370,717,746 | 100% | ||
bflanagin | 0 | 3,494,730,241 | 20.15% | ||
chichsopurve | 0 | 539,391,622 | 100% | ||
hoovesreport | 0 | 480,297,095 | 100% | ||
fc542f | 0 | 529,100,923 | 100% | ||
lucky-robin | 0 | 284,557,199 | 100% | ||
dalz | 0 | 4,510,719,894 | 16.12% | ||
ulockblock | 0 | 20,189,212,956 | 6.31% | ||
amart29 | 0 | 340,198,040 | 4.03% | ||
jk6276 | 0 | 6,680,830,508 | 20.15% | ||
avpounquered | 0 | 541,393,334 | 100% | ||
leitrafboahu | 0 | 537,907,017 | 100% | ||
triburultrac | 0 | 531,291,891 | 100% | ||
icdayforlo | 0 | 532,510,662 | 100% | ||
luc.real | 0 | 212,240,821 | 100% | ||
nieloagranca | 0 | 2,014,221,031 | 8% | ||
nicole5lw | 0 | 545,078,222 | 100% | ||
steemchoose | 0 | 8,576,394,508 | 9.75% | ||
dssdsds | 0 | 2,323,182,311 | 20.15% | ||
jayplayco | 0 | 71,566,410,482 | 20.15% | ||
cryptouno | 0 | 504,382,191 | 5% | ||
lupafilotaxia | 0 | 14,529,149,089 | 100% | ||
fran.frey | 0 | 329,261,535 | 10.07% | ||
alaiza | 0 | 451,664,007 | 100% | ||
mops2e | 0 | 330,654,087 | 24% | ||
trinityyrgk | 0 | 541,636,287 | 100% | ||
jrevilla | 0 | 94,985,965 | 20.15% | ||
jasmine9ws | 0 | 536,392,699 | 100% | ||
zoe69 | 0 | 524,882,196 | 100% | ||
avaudyt | 0 | 551,793,720 | 100% | ||
mackenzie57 | 0 | 552,613,872 | 100% | ||
swapsteem | 0 | 2,217,228,327 | 20.15% | ||
stem-espanol | 0 | 11,775,752,402 | 20.15% | ||
alexandra612l | 0 | 546,838,003 | 100% | ||
lapp | 0 | 450,082,281 | 100% | ||
steemtpistia | 0 | 453,402,384 | 100% | ||
crassipes | 0 | 453,636,622 | 100% | ||
aleestra | 0 | 442,307,154 | 20.15% | ||
dauphinegriping | 0 | 480,247,954 | 100% | ||
icerinksweet | 0 | 480,259,013 | 100% | ||
testisland | 0 | 480,248,445 | 100% | ||
lobestay | 0 | 480,229,569 | 100% | ||
rollpub | 0 | 480,286,547 | 100% | ||
fronettodic1976 | 0 | 541,243,555 | 100% | ||
esiselac1980 | 0 | 543,537,498 | 100% | ||
raskengsingrum | 0 | 544,090,279 | 100% | ||
werhimapar | 0 | 529,050,797 | 100% | ||
grapininpe | 0 | 543,409,400 | 100% | ||
slitperhohar | 0 | 540,145,447 | 100% | ||
agrovision | 0 | 455,169,099 | 100% | ||
natur-pur | 0 | 696,573,616 | 100% | ||
steem-ua | 0 | 629,776,776,436 | 6.02% | ||
giulyfarci52 | 0 | 173,897,987 | 10.07% | ||
votes4minnows | 0 | 232,890,391 | 2% | ||
hdu | 0 | 1,242,252,448 | 1% | ||
alex-hm | 0 | 1,201,062,486 | 50% | ||
bridfarsto | 0 | 549,718,684 | 100% | ||
bluesniper | 0 | 9,471,527,031 | 2.92% | ||
mrsbozz | 0 | 663,096,905 | 25% | ||
ascorphat | 0 | 2,037,151,248 | 2.5% | ||
rewarding | 0 | 5,355,488,220 | 70.15% | ||
jk6276.mons | 0 | 1,310,216,511 | 40.3% | ||
jaxson2011 | 0 | 1,519,824,944 | 40.3% | ||
supu | 0 | 29,661,674,937 | 3.5% | ||
eternalinferno | 0 | 188,382,591 | 40.3% | ||
agalte | 0 | 450,288,230 | 100% | ||
ongashere | 0 | 450,245,256 | 100% | ||
cissofai | 0 | 450,226,831 | 100% | ||
cunnats | 0 | 450,248,419 | 100% | ||
mimyiti | 0 | 450,285,483 | 100% | ||
yosantee | 0 | 450,234,649 | 100% | ||
iloncowni | 0 | 450,222,596 | 100% | ||
landiton | 0 | 450,200,225 | 100% | ||
entiserra | 0 | 450,230,551 | 100% | ||
itamow | 0 | 450,259,464 | 100% | ||
rildeac | 0 | 450,196,323 | 100% | ||
esera | 0 | 450,195,817 | 100% | ||
assedendi | 0 | 450,238,255 | 100% | ||
erteane | 0 | 450,223,762 | 100% | ||
onsoct | 0 | 450,189,502 | 100% | ||
neroplume | 0 | 450,200,797 | 100% | ||
irtil | 0 | 450,058,882 | 100% | ||
erathusun | 0 | 449,975,337 | 100% | ||
ereadr | 0 | 450,028,957 | 100% | ||
kabilka | 0 | 449,961,837 | 100% | ||
yimet | 0 | 449,972,856 | 100% | ||
utedserof | 0 | 449,958,606 | 100% | ||
neddo | 0 | 449,948,254 | 100% | ||
oyindim | 0 | 449,921,670 | 100% | ||
lernoof | 0 | 449,930,443 | 100% | ||
sacetac | 0 | 449,850,621 | 100% | ||
koorsicu | 0 | 449,849,240 | 100% | ||
abastupo | 0 | 449,868,222 | 100% | ||
motestert | 0 | 449,851,840 | 100% | ||
reaten | 0 | 449,857,365 | 100% | ||
rarsishu | 0 | 449,900,451 | 100% | ||
humanbear | 0 | 449,903,482 | 100% | ||
astom | 0 | 449,915,416 | 100% | ||
loutea | 0 | 449,919,681 | 100% | ||
enenged | 0 | 449,909,652 | 100% | ||
reseden | 0 | 449,909,067 | 100% | ||
ownea | 0 | 449,901,740 | 100% | ||
tororar | 0 | 449,909,573 | 100% | ||
ijangonam | 0 | 449,910,621 | 100% | ||
owomad | 0 | 449,979,642 | 100% | ||
anjus2 | 0 | 449,902,390 | 100% | ||
isordeng | 0 | 449,913,217 | 100% | ||
nongeat | 0 | 449,885,034 | 100% | ||
lisarent | 0 | 449,877,941 | 100% | ||
owiteal | 0 | 449,901,936 | 100% | ||
alyowneme | 0 | 449,905,252 | 100% | ||
lumsidue | 0 | 449,976,945 | 100% | ||
aryonet | 0 | 449,987,662 | 100% | ||
utopian.trail | 0 | 15,830,694,378 | 40.3% | ||
zugs | 0 | 2,419,867,769 | 3.5% |
Thank you for your contribution @duski.harahap. After analyzing your tutorial we suggest the following points below: - Nice work on the explanations of your code, although adding a bit more comments to the code can be helpful as well. - Using GIFs to show results is definitely better than standard still images. Good Job! - Again be careful how you write the tutorial. Thank you for your work in developing this tutorial. Looking forward to your upcoming tutorials. Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/8/2-1-1-1-1-3-2-3-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | portugalcoin |
---|---|
permlink | re-duskiharahap-create-a-forum-application-using-django-8-display-forum-data-and-create-and-implement-list-view-1553525769014-20190325t221655048z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["duski.harahap"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/8/2-1-1-1-1-3-2-3-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-03-25 22:16:54 |
last_update | 2019-03-25 22:16:54 |
depth | 1 |
children | 1 |
last_payout | 2019-04-01 22:16:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 9.526 HBD |
curator_payout_value | 3.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 922 |
author_reputation | 599,460,462,895,094 |
root_title | "Create a forum application using django #8: Display forum data and Create and implement List view" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,943,264 |
net_rshares | 19,368,747,365,367 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yuxi | 0 | 23,709,852,644 | 100% | ||
codingdefined | 0 | 22,782,992,677 | 15.47% | ||
espoem | 0 | 30,304,214,374 | 15% | ||
utopian-io | 0 | 19,135,836,372,375 | 13.7% | ||
jaff8 | 0 | 38,671,488,244 | 15.47% | ||
emrebeyler | 0 | 0 | 0.01% | ||
lostmine27 | 0 | 10,750,678,011 | 25% | ||
amosbastian | 0 | 57,868,563,221 | 15.47% | ||
sudefteri | 0 | 6,560,609,198 | 100% | ||
reazuliqbal | 0 | 13,334,442,665 | 8% | ||
amico | 0 | 811,076,109 | 0.55% | ||
ulockblock | 0 | 23,236,391,835 | 7.13% | ||
curbot | 0 | 2,506,689,174 | 100% | ||
ascorphat | 0 | 2,093,823,339 | 2.5% | ||
cleanit | 0 | 280,171,501 | 55% |
Thank you for your review, @portugalcoin! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-duskiharahap-create-a-forum-application-using-django-8-display-forum-data-and-create-and-implement-list-view-1553525769014-20190325t221655048z-20190327t224705z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-27 22:47:06 |
last_update | 2019-03-27 22:47:06 |
depth | 2 |
children | 0 |
last_payout | 2019-04-03 22:47:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | 152,955,367,999,756 |
root_title | "Create a forum application using django #8: Display forum data and Create and implement List view" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 82,065,063 |
net_rshares | 0 |
#### Hi @duski.harahap! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your post is eligible for our upvote, thanks to our collaboration with @utopian-io! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-create-a-forum-application-using-django-8-display-forum-data-and-create-and-implement-list-view-1553525769014-20190325t234216z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.19"}" |
created | 2019-03-25 23:42:18 |
last_update | 2019-03-25 23:42:18 |
depth | 1 |
children | 0 |
last_payout | 2019-04-01 23:42:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 292 |
author_reputation | 23,214,230,978,060 |
root_title | "Create a forum application using django #8: Display forum data and Create and implement List view" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,947,361 |
net_rshares | 61,714,745,425 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sbi3 | 0 | 61,714,745,425 | 10.42% |
Hey, @duski.harahap! **Thanks for contributing on Utopian**. Weβre already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-create-a-forum-application-using-django-8-display-forum-data-and-create-and-implement-list-view-1553525769014-20190326t043343z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-26 04:33:45 |
last_update | 2019-03-26 04:33:45 |
depth | 1 |
children | 0 |
last_payout | 2019-04-02 04:33:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 595 |
author_reputation | 152,955,367,999,756 |
root_title | "Create a forum application using django #8: Display forum data and Create and implement List view" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,960,889 |
net_rshares | 0 |