Skip to content
View lmn3x's full-sized avatar
Block or Report

Block or report lmn3x

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
lmn3x/README.md
  • 👋 Hi, I’m @lmn3x
  • 👀 I’m interested in python and Django..
  • 🌱 I’m currently learning django and microservices..
  • 💞️ I’m looking to collaborate on cool open source ..
  • 📫 use telegram to reach me @LMNTRI

Pinned

  1. bootstrap pagination in django bootstrap pagination in django
    1
    <div class="d-flex justify-content-center">
    2
     <span class="float-right">
    3
        {{ page_obj.start_index }}تا{{ page_obj.end_index }} از {{ page_obj.paginator.count }}
    4
            </span>
    5
        <nav aria-label="Page navigation example">
  2. Download an entire website with wget... Download an entire website with wget, along with assets.
    1
    # One liner
    2
    wget --recursive --page-requisites --adjust-extension --span-hosts --convert-links --restrict-file-names=windows --domains yoursite.com --no-parent yoursite.com
    3
    
    
    4
    # Explained
    5
    wget \