{% extends "notes/base.html" %} {% load countproducts %} {% load crispy_forms_tags %} {% block content %}

Creator Module


Creator is a shareable listing of your product that encapsulates all the other listings of your product. It's tailored for developers who like building stuff. The Creator Module allows you to list your products with all the relevant info at a single place including :

  1. Description
  2. Documentation for General Use
  3. Documentation for Developers
  4. Demo links
  5. Github/Gitlab/BitBucket repo
  6. Linkedin Profile
  7. Youtube Channel
  8. Product Hunt listing
All of this in a single shareable link. Start creating now :)



Your Products

New Product

{%if user.is_authenticated%} Hi {{user.first_name}}, you have made a total of {%count_products_of user%} product(s).

{% for product in product %}
{{product.category}}

{{ product.name }}

{% endfor %} {% if page_obj.has_previous %} « Previous {% endif %} {% for i in page_obj.paginator.page_range %} {% if page_obj.number == i %} Page {{ i }} {% else %} {{ i }} {% endif %} {% endfor %} {% if page_obj.has_next %} Next Last » {% endif %}
{%endif%} {% endblock content %}