Search
 
SCRIPT & CODE EXAMPLE
 

HTML

week days in table format in html

{% set days = ["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"] %}


<div class="container">
    <table class="table table-striped">
        <thead>
        <tr>
            {% for day in days %}
                <th>{{ day }}</th>
            {% endfor %}
        </tr>
        </thead>
        <tbody>
            <tr id="event_start">
                {% for day in days %}
                    <td name="{{ day }}">
                    </td>
                {% endfor %}
            </tr>
            <tr id="event_end">
                {% for day in days %}
                    <td name="{{ day }}">
                    </td>
                {% endfor %}
            </tr>
        </tbody>
    </table>
</div>
Comment

PREVIOUS NEXT
Code Example
Html :: awesome cheatsheets 
Html :: wrapper vs container 
Html :: b-table-column v-slot undefined 
Html :: phaser hello world 
Html :: httponly 
Html :: reverse timer in html 
Html :: html get button text 
Html :: html type range show label 
Html :: add time bar to website complete code 
Html :: pipalukh16@gmail.com c=a.getattribute("data-submit false");a="1"===c||"q"===c &!a.elements.q.value?!0:!1}else 
Html :: use html how to open dwg files 
Html :: xhtml strict 
Html :: Complete the HTML code such that the text in the header cells have bold text. 
Html :: <p 
Html :: devexpress aspxdatagridview set column alignment 
Html :: link html code 
Html :: localhost server html how to set up 
Html :: Prevent snippets from web page to be shown on search engine results 
Html :: set favicon in cross browser 
Html :: audio play limit using jquery 
Html :: html MCSTUPID 
Html :: asciidoc anchor 
Html :: see locked pakages linux 
Html :: twig post 
Html :: webview html 
Html :: HTML entities must be escaped 
Html :: bootstrap hide show toggle collapse 
Html :: snake game in html 
Html :: CLI configuration File in terraform ? 
Css :: css second td in table 
ADD CONTENT
Topic
Content
Source link
Name
9+8 =