본문 바로가기

카테고리 없음

2020-06-27 12시 개발자 글 모음 | "[Django]Result" 외 5개 이야기

[CSS] 말풍선, 툴팁(tooltip), title 태그(속성) 줄바꿈, 개행 처리하기 by 장민 about CSS


    NIPA 컴퓨팅 자원 신청 방법 ! by 김재열

    • Follow me : | |
    • © 2020 Jerry
    • This work is liscensed under CC BY-NC 4


    [Django]Image Field and Uploading Images by 안기웅 about Django

    • html" %} {% block content %} {% if title %}

      {{ title }}

      {% endif %}
      {% endif %}
      {{ blog_post
    • models import BlogPost # CRUD # GET -> Retrieve / List # POST -> Create / Update / DELETE # Create Retrieve Update Delete def blog_post_list_view(request): # list out objects # could be search qs = BlogPost


    [Django]Putting it All Together by 안기웅 about Django,Python

    • DEBUG = True ALLOWED_HOSTS = [] LOGIN_URL = "/login" # Application definition INSTALLED_APPS = [ # components "django
    • html" %} {% block content %}
      {% if query %}

      You searched for {{ query }}

      {% else %} {% endif %}
      {% endblock %}


    [Django]Complex Lookups by 안기웅 about Django

    • query): lookup = ( Q(title__icontains=query) | Q(content__icontains=query) | Q(slug__icontains=query) | Q(user__first_name__icontains=query) | Q(user__last_name__icontains=query) | Q(user__username__icontains=query) ) return self
    • html" %} {% block content %}
      {% if query %}

      You searched for {{ query }}

      {% else %}
      {% endif %} {% for blog_item in blog_list %} {% include 'blog/list-inline
    • models import SearchQuery def search_view(request): query = request


    [Django]Result by 안기웅 about Django

    • CodingEntrepreneurs Django 강의 정리
    • 로그인 후 블로그 탭>
    • 로그아웃 후 블로그 탭>