Skip to content

Commit

Permalink
refactor: changing the directory component and moving files
Browse files Browse the repository at this point in the history
  • Loading branch information
rzashakeri committed Aug 20, 2022
1 parent 7f343e3 commit 44c177a
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 9 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<button title="Upload Post" class="btn btn-ghost text-gray-500">
<label for="CreateNewPost" class="btn btn-ghost text-gray-500">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd"
d="M10 3a1 1 0 011 1v5h5a1 1 0 110 2h-5v5a1 1 0 11-2 0v-5H4a1 1 0 110-2h5V4a1 1 0 011-1z"
clip-rule="evenodd"/>
</svg>
<span class="hidden md:inline">
</span>
</button>
<span class="hidden md:inline"></span>
</label>
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,15 @@
<div class="flex-none">
<ul class="menu menu-horizontal items-center gap-2">
{% if request.user.is_authenticated %}
{% include 'components/header/create_post_component.html' %}
{% include 'shared/header/components/create_post_button.html' %}
{% endif %}
{% include 'components/header/themes_component.html' %}
{% include 'shared/header/components/themes_component.html' %}
{% if request.user.is_authenticated %}
{% render_partial "activity.views.activity" %}
{% endif %}
{% include 'components/header/profile_component.html' %}
{% include 'shared/header/components/profile_component.html' %}
</ul>
</div>
</div>
</header>
</header>
{% render_partial "post.views.create_new_post_view" %}
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{% load static %}
<script src="{% static 'node_modules/theme-change/index.js' %}"></script>
<script src="{% static 'constrainedfilefield/js/file_checker.js' %}"></script>
<script src="{% static 'node_modules/video.js/dist/video.min.js' %}"></script>
<script src="{% static 'node_modules/jquery/dist/jquery.min.js' %}"></script>
<script src="{% static 'node_modules/hideshowpassword/hideShowPassword.min.js' %}"></script>
<script src="{% static 'node_modules/just-validate/dist/just-validate.production.min.js' %}"></script>
<script src="{% static 'constrainedfilefield/js/file_checker.js' %}"></script>
<script src="{% static 'js/get_user_information.js' %}"></script>
<script src="{% static 'js/custom.js' %}"></script>
<script src="{% static 'node_modules/tsparticles-engine/tsparticles.engine.min.js' %}"></script>
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 44c177a

Please sign in to comment.