This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def is_creator(self,user): | |
if request.user.guidauser == serie.creator: | |
return True | |
return False |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def add_serie(request): | |
context = { | |
'serie_form': AddSerieForm() | |
} | |
if request.POST and request.user.is_authenticated(): | |
add_serie_form = AddSerieForm(request.POST) | |
if add_serie_form.is_valid(): | |
serie = add_serie_form.save(commit=False) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def add_serie(request): | |
context = { | |
'serie_form': AddSerieForm() | |
} | |
if request.POST and request.user.is_authenticated(): | |
add_serie_form = AddSerieForm(request.POST) | |
if add_serie_form.is_valid(): | |
post = serie_form.save(commit=False) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% block content %} | |
<section class='post-content'> | |
<ul class="favourites nav nav-tabs" role="tablist"> | |
<li style="width:50%"><a style="text-align:center" href="#posts" role="tab" data-toggle="tab"><i class="fa fa-newspaper-o"></i>Статті</a></li> | |
<li style="width:50%"><a style="text-align:center" href="#sweetie" role="tab" data-toggle="tab"><i class="fa fa-star">Цукерочки</a></li> | |
</ul> | |
<div class="tab-content"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<head> | |
<!-- Latest compiled and minified CSS --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> | |
<!-- Optional theme --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous"> | |
<!-- Latest compiled and minified JavaScript --> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script> |