#### Repository https://github.com/python #### What Will I Learn? - CRUD system - URL protection and redirect system #### 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 I will continue the tutorial series on forum applications that use Django. there are some things that we have done and we have done, you can see them in the curriculum section. Until now the application that has been made already has an authentication, a slug system, and several other features. In this tutorial, we will create a **CRUD(Create, read, update and delete)** system. Of course, the ***CRUD system*** in each application can be different. Then how is it implemented in our application, let's start this tutorial ### CRUD System The applications that we make relate to data and information, of course, data that is made not dynamic in the meaning can be changed over time, with dynamic data and always increasing, we need to create a system that can manage data to be *added, deleted and edited.* In the previous [section](https://steemit.com/utopian-io/@duski.harahap/create-a-forum-application-using-django-5-slug-concept-and-generated-slug-and-use-forms-generic-view) we have succeeded in creating a simple form that aims to create a forum on our application, here is the view that we can see:  - **Insert data** In the previous tutorial, we created a class that will be used in the URL ```'forum/add'```. There are 5 fields that we must fulfill to enter data into the forum table. They are ***title, desc, created_at, slug, and user.***  - We have got the *title, desc, and created_at* fields from the user input. - We have got the *slug field* from the **generate** **slug** we have made in the previous [tutorial](https://steemit.com/utopian-io/@duski.harahap/create-a-forum-application-using-django-5-slug-concept-and-generated-slug-and-use-forms-generic-view). - Now we have to fulfill the user field, we can get the value from the request. For that, we will create a new function that will fill that field. Here is the code: **forums/views.py** ``` from django.shortcuts import render from django.views.generic.edit import CreateView from .models import 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) ``` - ```def form_valid(self, form)```: In this function we will receive 2 parameters. The **first** parameter is ***self*** and the **second** is ***form.*** ***self*** is a parameter that we must shift so that we can access *properties* in the class and **form** parameters is the forms used in view. - ```form.instance.user = self.request.user```: **form.instance.user** is used to get an instance of the form model, so we can access the user key ```form.instance.use``` and then fill in the value obtained from the user request ```self.request.user```. - And then we run the function ```return super().form_valid(form)```. <br> - **Protected URL** We will create new functions that are important for URL protection systems. Of course, we will protect the URL. ***So that not everyone can access it***. For more details, we can see the code below: **forums/views.py** ``` from django.shortcuts import render from django.views.generic.edit import CreateView from .models import Forum from django.contrib.auth.decorators import login_required // import function login_required from django.utils.decorators import method_decorator // import utils method_decorator @method_decorator(login_required, name='dispatch') //Protected the class class ForumCreate(CreateView): model = Forum fields = ['title','desc'] def form_valid(self, form): form.instance.user = self.request.user return super().form_valid(form) ``` - With this code, we will *protect* our class so that it **cannot** be accessed if we are not logged in. - ```from django.contrib.auth.decorators import login_required``` for protection when the user is not logged in. - ```from django.utils.decorators import method_decorator ``` then we have to import the module method_decorator. - Now we have imported the ***decorator*** and ***login_required*** method, now we will use it like this ```@method_decorator(login_required, name='dispatch') ```. In **@method_decorator** there are two mandatory parameters. The **first** is the function that will be used ***login-required*** and the **second** is the type decorator **name='dispatch'**. If there is no error then **we cannot access** the path **'forums/add'**, if the user is not logged in.  We can see in the picture above we have succeeded in creating a protection system on our **URL.** <br> - **Create forum** Now we will add data with the user interface that we have created. .gif)  We can see in the picture above when we want to submit data, we get a warning. We get this not because of an error in our code. But because we don't define the routing that will be addressed after submitting the data. In **Django** there are two options for resolving this problem, namely ```Either provide a URL``` or ```define a get_absolute_url```. <br> - **Use ``` get_absolute_url``` method** To solve the problem above we will use the method ```get_absolute_url```, ***Where we can use the get_absolute_url method ?***. We can define **models.py** and in the ***forum class*** section, because the class we are accessing is ***forum class***. **forums/models.py** ``` from django.db import models from django.conf import settings from django.utils.text import slugify from django.urls import reverse //import the reverse function class Forum(models.Model): user = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE) title = models.CharField(max_length=100) slug = models.SlugField(unique=True) desc = models.TextField() created_at = models.DateTimeField(auto_now_add=True) def save(self, *args, **kwargs): self.slug = slugify(self.title) super(Forum, self).save(*args, **kwargs) def get_absolute_url(self): // define function get_absolute_url return reverse('home') // redirect to home class Comment(models.Model): user = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE) forum = models.ForeignKey(Forum, on_delete=models.CASCADE) desc = models.TextField() created_at = models.DateTimeField(auto_now_add=True) ``` - We can define the function in the forum class. ***We cannot change the name of the function***. Because the ```get_absolute_url()``` function is the default function of **Django.** ```get_absolute_url()``` is a function that will automatically run when the **URL** is successfully accessed. - **Redirect URL**: We will run ```get_absolute_url()``` automatically but haven't done anything yet. For that according to the *warning* we have got. We need to create a redirect page when we successfully do **POST** data. To do the redirect we need help with the ```reverse ()``` function. To use it we must import it as follows ```from django.urls import reverse```. - ```reverse function ()```: We can pass a parameter that contains the ***Path*** from the URL or ***Alias.*** In this tutorial we will use an ***alias***, after saving the data we will redirect to the homepage. We can give the alias as follows: ```path(' ', TemplateView.as_view(template_name='welcome.html'), name='home')``` I gave the alias the name of the path is ```'home'```. If there is no error then we can see the results as follows .gif) We can see in the picture above, we have successfully saved the data and implemented the **get_absolute_url** method. ### 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-6-crud-system-and-url-protection-redirect-system |
category | utopian-io |
json_metadata | {"tags":["utopian-io","tutorials","python","web","django"],"users":["method"],"image":["https://ipfs.busy.org/ipfs/QmTNTjohUjEBsSPeEywjfVijNMfMPozZQc7QurAg4bijKQ","https://ipfs.busy.org/ipfs/QmPuy2WP5QgqyGD8dGS78Z8GNupbUWDk5tXPZMnSHvLujz","https://cdn.steemitimages.com/DQmcbNKnj5xvSs5Eg3Y8onPkoZa9Q9WqvypZTJBeoT9xin6/ezgif.com-video-to-gif.gif","https://cdn.steemitimages.com/DQmb3yuhyid3FCxWqZYYfaz4ZzaLLXqNQtbhMzQE8myx5Bn/ezgif.com-video-to-gif%20(1).gif","https://ipfs.busy.org/ipfs/QmPHgSVSxkbobMv9yz5fNwAKUP6bdJdYPdJJVSsWsGoj8F","https://cdn.steemitimages.com/DQmSe9DzmPfUp5FyE7isY5fXZ2eoBBP3yD7Bhe1cpQaWwXp/ezgif.com-video-to-gif%20(2).gif"],"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-5-slug-concept-and-generated-slug-and-use-forms-generic-view","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-3-base-template-login-and-register-system-1552311993977","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"],"app":"steemit/0.1","format":"markdown"} |
created | 2019-03-19 13:35:48 |
last_update | 2019-03-19 13:38:51 |
depth | 0 |
children | 5 |
last_payout | 2019-03-26 13:35:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 16.946 HBD |
curator_payout_value | 5.262 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10,407 |
author_reputation | 60,094,717,098,672 |
root_title | "Create a forum application using django #6: CRUD system and URL protection,redirect system" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,571,972 |
net_rshares | 32,688,601,952,470 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tombstone | 0 | 2,127,801,494,396 | 9.13% | ||
bowess | 0 | 89,456,828,222 | 50% | ||
rufans | 0 | 27,086,167,846 | 100% | ||
abh12345 | 0 | 9,350,247,568 | 1.59% | ||
techslut | 0 | 75,178,670,648 | 20% | ||
minersean | 0 | 7,192,274,575 | 75% | ||
erikaflynn | 0 | 14,608,192,421 | 35% | ||
miniature-tiger | 0 | 89,230,208,531 | 50% | ||
aleister | 0 | 7,353,826,173 | 15% | ||
jakipatryk | 0 | 14,892,806,485 | 50% | ||
jga | 0 | 1,325,998,433 | 11.42% | ||
helo | 0 | 62,496,706,976 | 27.29% | ||
walnut1 | 0 | 17,333,469,559 | 11.42% | ||
lorenzor | 0 | 628,084,370 | 5.71% | ||
suesa | 0 | 109,161,982,362 | 25% | ||
codingdefined | 0 | 39,538,744,229 | 27.29% | ||
tsoldovieri | 0 | 804,314,353 | 5.71% | ||
bachuslib | 0 | 20,549,716,003 | 100% | ||
tykee | 0 | 6,422,700,467 | 11.42% | ||
steemitri | 0 | 115,243,665,557 | 100% | ||
iamphysical | 0 | 16,292,087,740 | 90% | ||
felixrodriguez | 0 | 394,763,271 | 3.99% | ||
leir | 0 | 2,143,046,674 | 50% | ||
azulear | 0 | 498,636,732 | 100% | ||
rehan12 | 0 | 6,753,297,514 | 2.28% | ||
silviu93 | 0 | 2,917,370,409 | 11.42% | ||
dakeshi | 0 | 553,854,547 | 11.42% | ||
eastmael | 0 | 7,494,472,473 | 50% | ||
espoem | 0 | 60,631,366,556 | 30% | ||
mcfarhat | 0 | 20,357,535,398 | 10.91% | ||
vishalsingh4997 | 0 | 73,878,123 | 11.42% | ||
pataty69 | 0 | 12,903,824,823 | 20% | ||
elear | 0 | 3,631,556,022 | 22.84% | ||
zoneboy | 0 | 21,272,006,897 | 100% | ||
carloserp-2000 | 0 | 32,193,195,848 | 100% | ||
carlos84 | 0 | 632,408,556 | 11.42% | ||
katamori | 0 | 1,122,574,311 | 13.6% | ||
che-shyr | 0 | 840,904,511 | 50% | ||
utopian-io | 0 | 28,264,550,149,113 | 22.84% | ||
shammi | 0 | 5,643,568,935 | 90% | ||
jaff8 | 0 | 67,378,811,399 | 27.29% | ||
amestyj | 0 | 238,122,730 | 5.71% | ||
mcyusuf | 0 | 1,506,106,312 | 11.42% | ||
alexs1320 | 0 | 15,970,773,474 | 10% | ||
gentleshaid | 0 | 18,245,695,203 | 22.84% | ||
lostmine27 | 0 | 12,515,929,052 | 25% | ||
ivymalifred | 0 | 164,402,293 | 5.71% | ||
dedicatedguy | 0 | 43,311,472,647 | 100% | ||
amosbastian | 0 | 97,653,714,331 | 27.29% | ||
eliaschess333 | 0 | 1,043,706,998 | 5.71% | ||
scienceangel | 0 | 67,827,063,957 | 50% | ||
portugalcoin | 0 | 14,591,817,716 | 15% | ||
vanarchist | 0 | 2,783,860,440 | 100% | ||
sargoon | 0 | 78,674,103 | 3% | ||
tobias-g | 0 | 131,608,031,305 | 38% | ||
didic | 0 | 28,830,314,198 | 25% | ||
joaorafael | 0 | 1,254,022,454 | 75% | ||
emiliomoron | 0 | 376,306,056 | 5.71% | ||
celmor | 0 | 550,499,123 | 100% | ||
midun | 0 | 8,164,446,680 | 30% | ||
ulisesfl17 | 0 | 1,801,646,071 | 100% | ||
arac | 0 | 988,149,458 | 100% | ||
tomastonyperez | 0 | 1,227,573,114 | 5.71% | ||
inespereira | 0 | 279,452,306 | 75% | ||
elvigia | 0 | 1,096,684,200 | 5.71% | ||
luiscd8a | 0 | 1,696,487,195 | 80% | ||
road2horizon | 0 | 2,636,528,168 | 3% | ||
statsexpert | 0 | 8,480,287,253 | 100% | ||
eniolw | 0 | 8,449,276,903 | 100% | ||
josedelacruz | 0 | 430,876,005 | 5.71% | ||
joseangelvs | 0 | 137,680,069 | 11.42% | ||
viannis | 0 | 138,272,180 | 5.71% | ||
flores39 | 0 | 406,017,559 | 100% | ||
erickyoussif | 0 | 355,796,094 | 11.42% | ||
trufflepig | 0 | 57,763,370,833 | 34% | ||
beetlevc | 0 | 6,593,537,299 | 10% | ||
rhampagoe | 0 | 2,225,243,697 | 2.5% | ||
anaestrada12 | 0 | 1,955,280,506 | 11.42% | ||
joelsegovia | 0 | 358,137,556 | 5.71% | ||
cryptouru | 0 | 1,757,163,210 | 8.5% | ||
jesusfl17 | 0 | 407,135,710 | 100% | ||
siwalansand | 0 | 552,413,826 | 100% | ||
dalz | 0 | 2,767,241,493 | 9.13% | ||
ulockblock | 0 | 39,980,943,418 | 12.21% | ||
amart29 | 0 | 146,189,567 | 2.28% | ||
jk6276 | 0 | 3,863,833,094 | 11.42% | ||
enycproxde | 0 | 527,791,532 | 100% | ||
icvierapas | 0 | 542,770,558 | 100% | ||
luc.real | 0 | 177,505,833 | 100% | ||
dssdsds | 0 | 1,731,556,854 | 11.42% | ||
jayplayco | 0 | 41,899,561,605 | 11.42% | ||
morganam9q0smith | 0 | 533,744,563 | 100% | ||
cryptouno | 0 | 500,387,788 | 5% | ||
fran.frey | 0 | 163,533,239 | 5.71% | ||
meme.nation | 0 | 491,146,648 | 8.5% | ||
mops2e | 0 | 333,234,937 | 24% | ||
oliviavhkjs | 0 | 553,751,598 | 100% | ||
munhenhos | 0 | 1,431,152,793 | 20% | ||
swapsteem | 0 | 1,205,069,377 | 11.42% | ||
saraht3 | 0 | 537,388,790 | 100% | ||
stem-espanol | 0 | 6,781,640,383 | 11.42% | ||
victoriaw64u8 | 0 | 540,289,262 | 100% | ||
victoria4i3z | 0 | 551,375,464 | 100% | ||
emilyxk13c | 0 | 540,890,512 | 100% | ||
durchmanfaimet | 0 | 530,174,709 | 100% | ||
bhaski | 0 | 1,643,391,179 | 20% | ||
calpeguvi | 0 | 551,565,649 | 100% | ||
riounelrarop | 0 | 552,686,933 | 100% | ||
bygualowab | 0 | 550,999,621 | 100% | ||
scenjovixa | 0 | 538,417,399 | 100% | ||
okalbucar | 0 | 553,167,813 | 100% | ||
steem-ua | 0 | 625,583,855,320 | 6.01% | ||
giulyfarci52 | 0 | 76,059,877 | 5.71% | ||
steemexpress | 0 | 3,083,953,931 | 5.32% | ||
tinyvoter | 0 | 662,542,811 | 7.5% | ||
alex-hm | 0 | 758,501,886 | 50% | ||
bluesniper | 0 | 1,517,433,447 | 0.5% | ||
kakakk | 0 | 1,749,886,504 | 11.42% | ||
mrsbozz | 0 | 672,899,903 | 25% | ||
ascorphat | 0 | 2,296,252,207 | 2.5% | ||
rewarding | 0 | 4,682,585,143 | 61.42% | ||
tipu.curator | 0 | 15,179,216,268 | 33% | ||
jk6276.mons | 0 | 671,865,330 | 22.84% | ||
jaxson2011 | 0 | 851,158,403 | 22.84% | ||
eternalinferno | 0 | 86,993,925 | 22.84% | ||
utopian.trail | 0 | 9,076,268,278 | 22.84% | ||
tenyears | 0 | 543,699,316 | 100% |
Thank you for your contribution. - Using the term CRUD system is too vague. It would have made more sense to say CRUD system for the Forum object. - The functionality itself is very basic, and the entities being created are not too complex. - As always, good use of images in your content. - Also appreciate your code comments - There is still lots of room for improvement to your tutorial English language, but I can certainly see you have come a long way. Good work! 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/3-2-0-1-1-4-2-3-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | mcfarhat |
---|---|
permlink | re-duskiharahap-create-a-forum-application-using-django-6-crud-system-and-url-protection-redirect-system-20190319t211819284z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/8/3-2-0-1-1-4-2-3-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-03-19 21:18:21 |
last_update | 2019-03-19 21:18:21 |
depth | 1 |
children | 1 |
last_payout | 2019-03-26 21:18:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 9.663 HBD |
curator_payout_value | 3.069 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 921 |
author_reputation | 150,651,671,367,256 |
root_title | "Create a forum application using django #6: CRUD system and URL protection,redirect system" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,590,780 |
net_rshares | 18,822,500,812,935 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yuxi | 0 | 23,422,070,849 | 100% | ||
codingdefined | 0 | 22,661,657,344 | 16.36% | ||
espoem | 0 | 28,397,075,390 | 15% | ||
utopian-io | 0 | 18,595,048,260,534 | 13.12% | ||
jaff8 | 0 | 38,141,300,487 | 16.36% | ||
emrebeyler | 0 | 10,028,464 | 0.01% | ||
amosbastian | 0 | 55,335,331,778 | 16.36% | ||
reazuliqbal | 0 | 13,727,157,994 | 8% | ||
ulockblock | 0 | 23,146,569,456 | 7.04% | ||
ascorphat | 0 | 2,260,565,171 | 2.5% | ||
yff | 0 | 20,024,686,446 | 100% | ||
curatortrail | 0 | 326,109,022 | 95% |
Thank you for your review, @mcfarhat! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-duskiharahap-create-a-forum-application-using-django-6-crud-system-and-url-protection-redirect-system-20190319t211819284z-20190322t122631z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-22 12:26:33 |
last_update | 2019-03-22 12:26:33 |
depth | 2 |
children | 0 |
last_payout | 2019-03-29 12:26:33 |
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 | 60 |
author_reputation | 152,955,367,999,756 |
root_title | "Create a forum application using django #6: CRUD system and URL protection,redirect system" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,732,382 |
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-6-crud-system-and-url-protection-redirect-system-20190319t212806z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.18"}" |
created | 2019-03-19 21:28:06 |
last_update | 2019-03-19 21:28:06 |
depth | 1 |
children | 0 |
last_payout | 2019-03-26 21:28: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 | 292 |
author_reputation | 23,214,230,978,060 |
root_title | "Create a forum application using django #6: CRUD system and URL protection,redirect system" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,591,152 |
net_rshares | 0 |
**Congratulations!** Your post has been selected as a daily Steemit truffle! It is listed on **rank 18** of all contributions awarded today. You can find the [TOP DAILY TRUFFLE PICKS HERE.](https://steemit.com/@trufflepig/daily-truffle-picks-2019-03-19) I upvoted your contribution because to my mind your post is at least **13 SBD** worth and should receive **158 votes**. It's now up to the lovely Steemit community to make this come true. I am `TrufflePig`, an Artificial Intelligence Bot that helps minnows and content curators using Machine Learning. If you are curious how I select content, [you can find an explanation here!](https://steemit.com/steemit/@trufflepig/weekly-truffle-updates-2019-11) Have a nice day and sincerely yours,  *`TrufflePig`*
author | trufflepig |
---|---|
permlink | re-create-a-forum-application-using-django-6-crud-system-and-url-protection-redirect-system-20190319t170533 |
category | utopian-io |
json_metadata | "" |
created | 2019-03-19 17:05:36 |
last_update | 2019-03-19 17:05:36 |
depth | 1 |
children | 0 |
last_payout | 2019-03-26 17:05:36 |
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 | 885 |
author_reputation | 21,266,577,867,113 |
root_title | "Create a forum application using django #6: CRUD system and URL protection,redirect system" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,581,196 |
net_rshares | 0 |
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-6-crud-system-and-url-protection-redirect-system-20190320t102037z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-20 10:20:39 |
last_update | 2019-03-20 10:20:39 |
depth | 1 |
children | 0 |
last_payout | 2019-03-27 10:20:39 |
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 #6: CRUD system and URL protection,redirect system" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,616,076 |
net_rshares | 0 |