<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.expertiza.ncsu.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sswattam</id>
	<title>Expertiza_Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.expertiza.ncsu.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sswattam"/>
	<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=Special:Contributions/Sswattam"/>
	<updated>2026-05-30T15:30:03Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=152460</id>
		<title>CSC/ECE 517 Fall 2023 - E2362. Create a page to edit an Assignment's due date in ReactJS</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=152460"/>
		<updated>2023-12-05T02:13:39Z</updated>

		<summary type="html">&lt;p&gt;Sswattam: /* Important Links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Expertiza==&lt;br /&gt;
&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is a [http://rubyonrails.org/ Ruby on Rails] based open source project. Instructors have the ability to add new projects, assignments, etc., as well as edit existing ones. Later on, they can view student submissions and grade them. Students can also use Expertiza to organize into teams to work on different projects and assignments and submit their work. They can also review other students' submissions.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 3:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves creating a page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.)&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Create a UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Design a user-friendly page that lists all the assignments with their corresponding due dates.&lt;br /&gt;
#*Implement the necessary React components for displaying the due dates page.&lt;br /&gt;
Implemented below updates which were required to be done from previous version:&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Number of review rounds&amp;quot; input tab.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Align the &amp;quot;Timezone&amp;quot; field in the same column as the checkboxes.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Show/Hide Date Updater&amp;quot; button.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Use Date Updater&amp;quot; column from the table.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Change the &amp;quot;Apply late policy&amp;quot; field to say, ~ &amp;quot;Use the late policy for this assignment&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Add a space between &amp;quot;Due date reminder&amp;quot; and &amp;quot;(hrs.)&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 4:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves updating front-end of the page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.) - Include dummy data.&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Update the UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Included dummy data&lt;br /&gt;
#*Enhanced the front-end of the page&lt;br /&gt;
&lt;br /&gt;
== Files added / modified ==&lt;br /&gt;
&lt;br /&gt;
*reimplementation-front-end/src/App.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/dueDate.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/DueDate.css&lt;br /&gt;
&lt;br /&gt;
== Implementation ==&lt;br /&gt;
*The current implementation can be found [https://github.com/sourabh1204/reimplementation-front-end/tree/main/src/pages/DueDate here]&lt;br /&gt;
*Tasks such as aligning the &amp;quot;Timezone&amp;quot; field in the same column as the checkboxes, removing the &amp;quot;Number of review rounds&amp;quot; input tab and &amp;quot;Show/Hide Date Updater&amp;quot; button; Has been implemented in below code snippet:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div className=&amp;quot;due-date-container&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div className=&amp;quot;checkbox-section&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;div&amp;gt;&lt;br /&gt;
            &amp;lt;label&amp;gt;Timezone:&amp;lt;/label&amp;gt;&lt;br /&gt;
            &amp;lt;span&amp;gt;Timezone Value&amp;lt;/span&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;div className=&amp;quot;checkbox-item&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;input&lt;br /&gt;
                type=&amp;quot;checkbox&amp;quot;&lt;br /&gt;
                checked={useTeamFormationDeadline}&lt;br /&gt;
                onChange={(e) =&amp;gt; setUseTeamFormationDeadline(e.target.checked)}&lt;br /&gt;
            /&amp;gt;&lt;br /&gt;
            Use team formation deadline&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;div className=&amp;quot;checkbox-item&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;input&lt;br /&gt;
                type=&amp;quot;checkbox&amp;quot;&lt;br /&gt;
                checked={useMetaReviewDeadline}&lt;br /&gt;
                onChange={(e) =&amp;gt; setUseMetaReviewDeadline(e.target.checked)}&lt;br /&gt;
            /&amp;gt;&lt;br /&gt;
            Use meta-review deadline&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*Changes related to &amp;quot;Late Policy of the assignment&amp;quot;; We have included code segment to add as many options for the dropdown as required. This has been implemented as below:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div className=&amp;quot;late-policy-section&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;input type=&amp;quot;checkbox&amp;quot; className=&amp;quot;late-policy-checkbox&amp;quot; /&amp;gt;&lt;br /&gt;
    Use the late policy for this assignment&lt;br /&gt;
    &amp;lt;select&amp;gt;&lt;br /&gt;
        &amp;lt;option&amp;gt;Random Dropdown Option 1&amp;lt;/option&amp;gt;&lt;br /&gt;
        &amp;lt;option&amp;gt;Random Dropdown Option 2&amp;lt;/option&amp;gt;&lt;br /&gt;
        {/* Add more options as needed */}&lt;br /&gt;
    &amp;lt;/select&amp;gt;&lt;br /&gt;
    &amp;lt;a href=&amp;quot;#&amp;quot; className=&amp;quot;new-late-policy-link&amp;quot;&amp;gt;New Late Policy&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*The CSS implemented to enhance the front-end is shown below:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
.due-date-container {&lt;br /&gt;
    padding: 20px;&lt;br /&gt;
    font-family: Arial, sans-serif;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .checkbox-section {&lt;br /&gt;
    display: flex;&lt;br /&gt;
    flex-direction: column;&lt;br /&gt;
    margin-bottom: 20px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .checkbox-item {&lt;br /&gt;
    display: flex;&lt;br /&gt;
    align-items: center;  /* Ensures vertical alignment between text and checkbox */&lt;br /&gt;
    margin-bottom: 5px;  &lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .checkbox-item input[type=&amp;quot;checkbox&amp;quot;] {&lt;br /&gt;
    margin-right: 10px;  &lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .deadline-table {&lt;br /&gt;
    width: 100%;&lt;br /&gt;
    border-collapse: collapse;&lt;br /&gt;
    margin-bottom: 20px;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .deadline-table th,&lt;br /&gt;
  .deadline-table td {&lt;br /&gt;
    border: 1px solid #ddd;&lt;br /&gt;
    padding: 10px;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .deadline-table th {&lt;br /&gt;
    background-color: #f2f2f2;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .late-policy-section {&lt;br /&gt;
    display: flex;&lt;br /&gt;
    align-items: center;&lt;br /&gt;
    margin-bottom: 20px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .late-policy-checkbox {&lt;br /&gt;
    margin-right: 10px;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .late-policy-section select {&lt;br /&gt;
    margin-left: 10px;&lt;br /&gt;
    margin-right: 10px;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .new-late-policy-link {&lt;br /&gt;
    margin-left: 10px;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
    color: #007BFF;&lt;br /&gt;
    cursor: pointer;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .new-late-policy-link:hover {&lt;br /&gt;
    text-decoration: underline;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .buttons-section {&lt;br /&gt;
    display: flex;&lt;br /&gt;
    justify-content: flex-end;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .save-btn {&lt;br /&gt;
    background-color: #007BFF;&lt;br /&gt;
    color: #fff;&lt;br /&gt;
    padding: 10px 20px;&lt;br /&gt;
    border: none;&lt;br /&gt;
    cursor: pointer;&lt;br /&gt;
    margin-right: 10px;&lt;br /&gt;
    transition: background-color 0.3s;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .save-btn:hover {&lt;br /&gt;
    background-color: #0056b3;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .back-btn {&lt;br /&gt;
    background-color: #f2f2f2;&lt;br /&gt;
    padding: 10px 20px;&lt;br /&gt;
    border: 1px solid #ddd;&lt;br /&gt;
    cursor: pointer;&lt;br /&gt;
    transition: background-color 0.3s;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .back-btn:hover {&lt;br /&gt;
    background-color: #ddd;&lt;br /&gt;
  }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*The dummy data included for the project is represented as below:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
const staticRowData = {&lt;br /&gt;
  deadlineType: 'Round 1: Submission',&lt;br /&gt;
  dateTime: '12/01/2023, 11:59 PM', // Replace with an appropriate date and time&lt;br /&gt;
  submissionAllowed: 'Yes',&lt;br /&gt;
  reviewAllowed: 'Yes',&lt;br /&gt;
  teammateReviewAllowed: 'Yes',&lt;br /&gt;
  metaReviewAllowed: 'Yes',&lt;br /&gt;
  reminderHours: '1',&lt;br /&gt;
};&lt;br /&gt;
const staticRowData2 = {&lt;br /&gt;
  deadlineType: 'Round 1: Review',&lt;br /&gt;
  dateTime: '12/05/2023, 11:59 PM',&lt;br /&gt;
  submissionAllowed: 'Yes',&lt;br /&gt;
  reviewAllowed: 'Yes',&lt;br /&gt;
  teammateReviewAllowed: 'No',&lt;br /&gt;
  metaReviewAllowed: 'No',&lt;br /&gt;
  reminderHours: '2',&lt;br /&gt;
};&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== Test Plan ==&lt;br /&gt;
*The frontend has been implemented according to requirements, with no mandated automated test cases. Manual testing is performed, involving human interaction to validate functionality. This approach emphasizes thorough testing through user actions and scenarios.&lt;br /&gt;
&lt;br /&gt;
== Results (Screenshots) ==&lt;br /&gt;
*Below is the image of the older version for comparison:&lt;br /&gt;
[[File:DuedateOlderPage.png|990px]]&lt;br /&gt;
*Program 3 - Updated page to edit assignment's due dates:&lt;br /&gt;
[[File:Duedate_page.png|990px]]&lt;br /&gt;
*Program 4 - Enhanced page to edit assignment's due dates:&lt;br /&gt;
[[File:UpdatedDueDatePage.png|990px]]&lt;br /&gt;
&lt;br /&gt;
==Team==&lt;br /&gt;
=====Mentor===== &lt;br /&gt;
* [mailto:kbhanda3@ncsu.edu Kartiki Bhandakkar]&lt;br /&gt;
&lt;br /&gt;
=====Members===== &lt;br /&gt;
* [mailto:sswattam@ncsu.edu Sourabh Wattamwar]&lt;br /&gt;
* [mailto:nshah28@ncsu.edu Nirav Shah]&lt;br /&gt;
* [mailto:msoni@ncsu.edu Mohit Soni]&lt;br /&gt;
&lt;br /&gt;
==Important Links==&lt;br /&gt;
*[https://github.com/sourabh1204/reimplementation-front-end GitHub Repository]&lt;br /&gt;
*[https://github.com/expertiza/reimplementation-front-end/pull/16 Pull Request]&lt;br /&gt;
*[https://www.youtube.com/watch?v=O7JdNt1WqFc Demo Video]&lt;br /&gt;
*[https://docs.google.com/document/d/1dXwTNHR26eou6EJZkME8k8FhlpxCf_roMmWzclca8bA/edit?usp=sharing Project Instructions]&lt;/div&gt;</summary>
		<author><name>Sswattam</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=152080</id>
		<title>CSC/ECE 517 Fall 2023 - E2362. Create a page to edit an Assignment's due date in ReactJS</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=152080"/>
		<updated>2023-12-03T23:15:41Z</updated>

		<summary type="html">&lt;p&gt;Sswattam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Expertiza==&lt;br /&gt;
&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is a [http://rubyonrails.org/ Ruby on Rails] based open source project. Instructors have the ability to add new projects, assignments, etc., as well as edit existing ones. Later on, they can view student submissions and grade them. Students can also use Expertiza to organize into teams to work on different projects and assignments and submit their work. They can also review other students' submissions.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 3:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves creating a page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.)&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Create a UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Design a user-friendly page that lists all the assignments with their corresponding due dates.&lt;br /&gt;
#*Implement the necessary React components for displaying the due dates page.&lt;br /&gt;
Implemented below updates which were required to be done from previous version:&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Number of review rounds&amp;quot; input tab.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Align the &amp;quot;Timezone&amp;quot; field in the same column as the checkboxes.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Show/Hide Date Updater&amp;quot; button.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Use Date Updater&amp;quot; column from the table.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Change the &amp;quot;Apply late policy&amp;quot; field to say, ~ &amp;quot;Use the late policy for this assignment&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Add a space between &amp;quot;Due date reminder&amp;quot; and &amp;quot;(hrs.)&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 4:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves updating front-end of the page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.) - Include dummy data.&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Update the UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Included dummy data&lt;br /&gt;
#*Enhanced the front-end of the page&lt;br /&gt;
&lt;br /&gt;
== Files added / modified ==&lt;br /&gt;
&lt;br /&gt;
*reimplementation-front-end/src/App.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/dueDate.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/DueDate.css&lt;br /&gt;
&lt;br /&gt;
== Implementation ==&lt;br /&gt;
*The current implementation can be found [https://github.com/sourabh1204/reimplementation-front-end/tree/main/src/pages/DueDate here]&lt;br /&gt;
*Tasks such as aligning the &amp;quot;Timezone&amp;quot; field in the same column as the checkboxes, removing the &amp;quot;Number of review rounds&amp;quot; input tab and &amp;quot;Show/Hide Date Updater&amp;quot; button; Has been implemented in below code snippet:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div className=&amp;quot;due-date-container&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div className=&amp;quot;checkbox-section&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;div&amp;gt;&lt;br /&gt;
            &amp;lt;label&amp;gt;Timezone:&amp;lt;/label&amp;gt;&lt;br /&gt;
            &amp;lt;span&amp;gt;Timezone Value&amp;lt;/span&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;div className=&amp;quot;checkbox-item&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;input&lt;br /&gt;
                type=&amp;quot;checkbox&amp;quot;&lt;br /&gt;
                checked={useTeamFormationDeadline}&lt;br /&gt;
                onChange={(e) =&amp;gt; setUseTeamFormationDeadline(e.target.checked)}&lt;br /&gt;
            /&amp;gt;&lt;br /&gt;
            Use team formation deadline&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
        &amp;lt;div className=&amp;quot;checkbox-item&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;input&lt;br /&gt;
                type=&amp;quot;checkbox&amp;quot;&lt;br /&gt;
                checked={useMetaReviewDeadline}&lt;br /&gt;
                onChange={(e) =&amp;gt; setUseMetaReviewDeadline(e.target.checked)}&lt;br /&gt;
            /&amp;gt;&lt;br /&gt;
            Use meta-review deadline&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*Changes related to &amp;quot;Late Policy of the assignment&amp;quot;; We have included code segment to add as many options for the dropdown as required. This has been implemented as below:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div className=&amp;quot;late-policy-section&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;input type=&amp;quot;checkbox&amp;quot; className=&amp;quot;late-policy-checkbox&amp;quot; /&amp;gt;&lt;br /&gt;
    Use the late policy for this assignment&lt;br /&gt;
    &amp;lt;select&amp;gt;&lt;br /&gt;
        &amp;lt;option&amp;gt;Random Dropdown Option 1&amp;lt;/option&amp;gt;&lt;br /&gt;
        &amp;lt;option&amp;gt;Random Dropdown Option 2&amp;lt;/option&amp;gt;&lt;br /&gt;
        {/* Add more options as needed */}&lt;br /&gt;
    &amp;lt;/select&amp;gt;&lt;br /&gt;
    &amp;lt;a href=&amp;quot;#&amp;quot; className=&amp;quot;new-late-policy-link&amp;quot;&amp;gt;New Late Policy&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*The CSS implemented to enhance the front-end is shown below:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
.due-date-container {&lt;br /&gt;
    padding: 20px;&lt;br /&gt;
    font-family: Arial, sans-serif;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .checkbox-section {&lt;br /&gt;
    display: flex;&lt;br /&gt;
    flex-direction: column;&lt;br /&gt;
    margin-bottom: 20px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .checkbox-item {&lt;br /&gt;
    display: flex;&lt;br /&gt;
    align-items: center;  /* Ensures vertical alignment between text and checkbox */&lt;br /&gt;
    margin-bottom: 5px;  &lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .checkbox-item input[type=&amp;quot;checkbox&amp;quot;] {&lt;br /&gt;
    margin-right: 10px;  &lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .deadline-table {&lt;br /&gt;
    width: 100%;&lt;br /&gt;
    border-collapse: collapse;&lt;br /&gt;
    margin-bottom: 20px;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .deadline-table th,&lt;br /&gt;
  .deadline-table td {&lt;br /&gt;
    border: 1px solid #ddd;&lt;br /&gt;
    padding: 10px;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .deadline-table th {&lt;br /&gt;
    background-color: #f2f2f2;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .late-policy-section {&lt;br /&gt;
    display: flex;&lt;br /&gt;
    align-items: center;&lt;br /&gt;
    margin-bottom: 20px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .late-policy-checkbox {&lt;br /&gt;
    margin-right: 10px;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .late-policy-section select {&lt;br /&gt;
    margin-left: 10px;&lt;br /&gt;
    margin-right: 10px;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .new-late-policy-link {&lt;br /&gt;
    margin-left: 10px;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
    color: #007BFF;&lt;br /&gt;
    cursor: pointer;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .new-late-policy-link:hover {&lt;br /&gt;
    text-decoration: underline;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .buttons-section {&lt;br /&gt;
    display: flex;&lt;br /&gt;
    justify-content: flex-end;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .save-btn {&lt;br /&gt;
    background-color: #007BFF;&lt;br /&gt;
    color: #fff;&lt;br /&gt;
    padding: 10px 20px;&lt;br /&gt;
    border: none;&lt;br /&gt;
    cursor: pointer;&lt;br /&gt;
    margin-right: 10px;&lt;br /&gt;
    transition: background-color 0.3s;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .save-btn:hover {&lt;br /&gt;
    background-color: #0056b3;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .back-btn {&lt;br /&gt;
    background-color: #f2f2f2;&lt;br /&gt;
    padding: 10px 20px;&lt;br /&gt;
    border: 1px solid #ddd;&lt;br /&gt;
    cursor: pointer;&lt;br /&gt;
    transition: background-color 0.3s;&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  .back-btn:hover {&lt;br /&gt;
    background-color: #ddd;&lt;br /&gt;
  }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*The dummy data included for the project is represented as below:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
const staticRowData = {&lt;br /&gt;
  deadlineType: 'Round 1: Submission',&lt;br /&gt;
  dateTime: '12/01/2023, 11:59 PM', // Replace with an appropriate date and time&lt;br /&gt;
  submissionAllowed: 'Yes',&lt;br /&gt;
  reviewAllowed: 'Yes',&lt;br /&gt;
  teammateReviewAllowed: 'Yes',&lt;br /&gt;
  metaReviewAllowed: 'Yes',&lt;br /&gt;
  reminderHours: '1',&lt;br /&gt;
};&lt;br /&gt;
const staticRowData2 = {&lt;br /&gt;
  deadlineType: 'Round 1: Review',&lt;br /&gt;
  dateTime: '12/05/2023, 11:59 PM',&lt;br /&gt;
  submissionAllowed: 'Yes',&lt;br /&gt;
  reviewAllowed: 'Yes',&lt;br /&gt;
  teammateReviewAllowed: 'No',&lt;br /&gt;
  metaReviewAllowed: 'No',&lt;br /&gt;
  reminderHours: '2',&lt;br /&gt;
};&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== Test Plan ==&lt;br /&gt;
*The frontend has been implemented according to requirements, with no mandated automated test cases. Manual testing is performed, involving human interaction to validate functionality. This approach emphasizes thorough testing through user actions and scenarios.&lt;br /&gt;
&lt;br /&gt;
== Results (Screenshots) ==&lt;br /&gt;
*Below is the image of the older version for comparison:&lt;br /&gt;
[[File:DuedateOlderPage.png|990px]]&lt;br /&gt;
*Program 3 - Updated page to edit assignment's due dates:&lt;br /&gt;
[[File:Duedate_page.png|990px]]&lt;br /&gt;
*Program 4 - Enhanced page to edit assignment's due dates:&lt;br /&gt;
[[File:UpdatedDueDatePage.png|990px]]&lt;br /&gt;
&lt;br /&gt;
==Team==&lt;br /&gt;
=====Mentor===== &lt;br /&gt;
* [mailto:kbhanda3@ncsu.edu Kartiki Bhandakkar]&lt;br /&gt;
&lt;br /&gt;
=====Members===== &lt;br /&gt;
* [mailto:sswattam@ncsu.edu Sourabh Wattamwar]&lt;br /&gt;
* [mailto:nshah28@ncsu.edu Nirav Shah]&lt;br /&gt;
* [mailto:msoni@ncsu.edu Mohit Soni]&lt;br /&gt;
&lt;br /&gt;
==Important Links==&lt;br /&gt;
*[https://github.com/sourabh1204/reimplementation-front-end GitHub Repository]&lt;br /&gt;
*[https://github.com/expertiza/reimplementation-front-end/pull/16 Pull Request]&lt;br /&gt;
*[Demo Video]&lt;br /&gt;
*[https://docs.google.com/document/d/1dXwTNHR26eou6EJZkME8k8FhlpxCf_roMmWzclca8bA/edit?usp=sharing Project Instructions]&lt;/div&gt;</summary>
		<author><name>Sswattam</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=152079</id>
		<title>CSC/ECE 517 Fall 2023 - E2362. Create a page to edit an Assignment's due date in ReactJS</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=152079"/>
		<updated>2023-12-03T22:48:59Z</updated>

		<summary type="html">&lt;p&gt;Sswattam: /* Implementation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Expertiza==&lt;br /&gt;
&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is a [http://rubyonrails.org/ Ruby on Rails] based open source project. Instructors have the ability to add new projects, assignments, etc., as well as edit existing ones. Later on, they can view student submissions and grade them. Students can also use Expertiza to organize into teams to work on different projects and assignments and submit their work. They can also review other students' submissions.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 3:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves creating a page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.)&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Create a UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Design a user-friendly page that lists all the assignments with their corresponding due dates.&lt;br /&gt;
#*Implement the necessary React components for displaying the due dates page.&lt;br /&gt;
Implemented below updates which were required to be done from previous version:&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Number of review rounds&amp;quot; input tab.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Align the &amp;quot;Timezone&amp;quot; field in the same column as the checkboxes.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Show/Hide Date Updater&amp;quot; button.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Use Date Updater&amp;quot; column from the table.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Change the &amp;quot;Apply late policy&amp;quot; field to say, ~ &amp;quot;Use the late policy for this assignment&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Add a space between &amp;quot;Due date reminder&amp;quot; and &amp;quot;(hrs.)&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 4:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves updating front-end of the page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.) - Include dummy data.&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Update the UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Included dummy data&lt;br /&gt;
#*Enhanced the front-end of the page&lt;br /&gt;
&lt;br /&gt;
== Files added / modified ==&lt;br /&gt;
&lt;br /&gt;
*reimplementation-front-end/src/App.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/dueDate.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/DueDate.css&lt;br /&gt;
&lt;br /&gt;
== Implementation ==&lt;br /&gt;
*The current implementation can be found [https://github.com/sourabh1204/reimplementation-front-end/tree/main/src/pages/DueDate here]&lt;br /&gt;
&lt;br /&gt;
== Test Plan ==&lt;br /&gt;
*The frontend has been implemented according to requirements, with no mandated automated test cases. Manual testing is performed, involving human interaction to validate functionality. This approach emphasizes thorough testing through user actions and scenarios.&lt;br /&gt;
&lt;br /&gt;
== Results (Screenshots) ==&lt;br /&gt;
*Below is the image of the older version for comparison:&lt;br /&gt;
[[File:DuedateOlderPage.png|990px]]&lt;br /&gt;
*Program 3 - Updated page to edit assignment's due dates:&lt;br /&gt;
[[File:Duedate_page.png|990px]]&lt;br /&gt;
*Program 4 - Enhanced page to edit assignment's due dates:&lt;br /&gt;
[[File:UpdatedDueDatePage.png|990px]]&lt;br /&gt;
&lt;br /&gt;
==Team==&lt;br /&gt;
=====Mentor===== &lt;br /&gt;
* [mailto:kbhanda3@ncsu.edu Kartiki Bhandakkar]&lt;br /&gt;
&lt;br /&gt;
=====Members===== &lt;br /&gt;
* [mailto:sswattam@ncsu.edu Sourabh Wattamwar]&lt;br /&gt;
* [mailto:nshah28@ncsu.edu Nirav Shah]&lt;br /&gt;
* [mailto:msoni@ncsu.edu Mohit Soni]&lt;br /&gt;
&lt;br /&gt;
==Important Links==&lt;br /&gt;
*[https://github.com/sourabh1204/reimplementation-front-end GitHub Repository]&lt;br /&gt;
*[https://github.com/expertiza/reimplementation-front-end/pull/16 Pull Request]&lt;br /&gt;
*[Demo Video]&lt;br /&gt;
*[https://docs.google.com/document/d/1dXwTNHR26eou6EJZkME8k8FhlpxCf_roMmWzclca8bA/edit?usp=sharing Project Instructions]&lt;/div&gt;</summary>
		<author><name>Sswattam</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=152078</id>
		<title>CSC/ECE 517 Fall 2023 - E2362. Create a page to edit an Assignment's due date in ReactJS</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=152078"/>
		<updated>2023-12-03T22:45:04Z</updated>

		<summary type="html">&lt;p&gt;Sswattam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Expertiza==&lt;br /&gt;
&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is a [http://rubyonrails.org/ Ruby on Rails] based open source project. Instructors have the ability to add new projects, assignments, etc., as well as edit existing ones. Later on, they can view student submissions and grade them. Students can also use Expertiza to organize into teams to work on different projects and assignments and submit their work. They can also review other students' submissions.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 3:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves creating a page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.)&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Create a UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Design a user-friendly page that lists all the assignments with their corresponding due dates.&lt;br /&gt;
#*Implement the necessary React components for displaying the due dates page.&lt;br /&gt;
Implemented below updates which were required to be done from previous version:&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Number of review rounds&amp;quot; input tab.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Align the &amp;quot;Timezone&amp;quot; field in the same column as the checkboxes.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Show/Hide Date Updater&amp;quot; button.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Use Date Updater&amp;quot; column from the table.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Change the &amp;quot;Apply late policy&amp;quot; field to say, ~ &amp;quot;Use the late policy for this assignment&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Add a space between &amp;quot;Due date reminder&amp;quot; and &amp;quot;(hrs.)&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 4:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves updating front-end of the page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.) - Include dummy data.&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Update the UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Included dummy data&lt;br /&gt;
#*Enhanced the front-end of the page&lt;br /&gt;
&lt;br /&gt;
== Files added / modified ==&lt;br /&gt;
&lt;br /&gt;
*reimplementation-front-end/src/App.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/dueDate.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/DueDate.css&lt;br /&gt;
&lt;br /&gt;
== Implementation ==&lt;br /&gt;
*The current implementation can be found [https://github.com/sourabh1204/reimplementation-front-end here]&lt;br /&gt;
&lt;br /&gt;
== Test Plan ==&lt;br /&gt;
*The frontend has been implemented according to requirements, with no mandated automated test cases. Manual testing is performed, involving human interaction to validate functionality. This approach emphasizes thorough testing through user actions and scenarios.&lt;br /&gt;
&lt;br /&gt;
== Results (Screenshots) ==&lt;br /&gt;
*Below is the image of the older version for comparison:&lt;br /&gt;
[[File:DuedateOlderPage.png|990px]]&lt;br /&gt;
*Program 3 - Updated page to edit assignment's due dates:&lt;br /&gt;
[[File:Duedate_page.png|990px]]&lt;br /&gt;
*Program 4 - Enhanced page to edit assignment's due dates:&lt;br /&gt;
[[File:UpdatedDueDatePage.png|990px]]&lt;br /&gt;
&lt;br /&gt;
==Team==&lt;br /&gt;
=====Mentor===== &lt;br /&gt;
* [mailto:kbhanda3@ncsu.edu Kartiki Bhandakkar]&lt;br /&gt;
&lt;br /&gt;
=====Members===== &lt;br /&gt;
* [mailto:sswattam@ncsu.edu Sourabh Wattamwar]&lt;br /&gt;
* [mailto:nshah28@ncsu.edu Nirav Shah]&lt;br /&gt;
* [mailto:msoni@ncsu.edu Mohit Soni]&lt;br /&gt;
&lt;br /&gt;
==Important Links==&lt;br /&gt;
*[https://github.com/sourabh1204/reimplementation-front-end GitHub Repository]&lt;br /&gt;
*[https://github.com/expertiza/reimplementation-front-end/pull/16 Pull Request]&lt;br /&gt;
*[Demo Video]&lt;br /&gt;
*[https://docs.google.com/document/d/1dXwTNHR26eou6EJZkME8k8FhlpxCf_roMmWzclca8bA/edit?usp=sharing Project Instructions]&lt;/div&gt;</summary>
		<author><name>Sswattam</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=152077</id>
		<title>CSC/ECE 517 Fall 2023 - E2362. Create a page to edit an Assignment's due date in ReactJS</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=152077"/>
		<updated>2023-12-03T22:34:53Z</updated>

		<summary type="html">&lt;p&gt;Sswattam: /* Results (Screenshots) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Expertiza==&lt;br /&gt;
&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is a [http://rubyonrails.org/ Ruby on Rails] based open source project. Instructors have the ability to add new projects, assignments, etc., as well as edit existing ones. Later on, they can view student submissions and grade them. Students can also use Expertiza to organize into teams to work on different projects and assignments and submit their work. They can also review other students' submissions.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 3:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves creating a page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.)&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Create a UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Design a user-friendly page that lists all the assignments with their corresponding due dates.&lt;br /&gt;
#*Implement the necessary React components for displaying the due dates page.&lt;br /&gt;
Implemented below updates which were required to be done from previous version:&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Number of review rounds&amp;quot; input tab.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Align the &amp;quot;Timezone&amp;quot; field in the same column as the checkboxes.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Show/Hide Date Updater&amp;quot; button.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Use Date Updater&amp;quot; column from the table.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Change the &amp;quot;Apply late policy&amp;quot; field to say, ~ &amp;quot;Use the late policy for this assignment&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Add a space between &amp;quot;Due date reminder&amp;quot; and &amp;quot;(hrs.)&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 4:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves updating front-end of the page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.) - Include dummy data.&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Update the UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Included dummy data&lt;br /&gt;
#*Enhanced the front-end of the page&lt;br /&gt;
&lt;br /&gt;
== Files added / modified ==&lt;br /&gt;
&lt;br /&gt;
*reimplementation-front-end/src/App.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/dueDate.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/DueDate.css&lt;br /&gt;
&lt;br /&gt;
== Test Plan ==&lt;br /&gt;
*The frontend has been implemented according to requirements, with no mandated automated test cases. Manual testing is performed, involving human interaction to validate functionality. This approach emphasizes thorough testing through user actions and scenarios.&lt;br /&gt;
&lt;br /&gt;
== Results (Screenshots) ==&lt;br /&gt;
*Below is the image of the older version for comparison:&lt;br /&gt;
[[File:DuedateOlderPage.png|990px]]&lt;br /&gt;
*Program 3 - Updated page to edit assignment's due dates:&lt;br /&gt;
[[File:Duedate_page.png|990px]]&lt;br /&gt;
*Program 4 - Enhanced page to edit assignment's due dates:&lt;br /&gt;
[[File:UpdatedDueDatePage.png|990px]]&lt;br /&gt;
&lt;br /&gt;
==Team==&lt;br /&gt;
=====Mentor===== &lt;br /&gt;
* Kartiki Bhandakkar&lt;br /&gt;
&lt;br /&gt;
=====Members===== &lt;br /&gt;
* Sourabh Wattamwar &amp;lt;sswattam@ncsu.edu&amp;gt;&lt;br /&gt;
* Nirav Shah &amp;lt;nshah28@ncsu.edu&amp;gt;&lt;br /&gt;
* Mohit Soni &amp;lt;msoni@ncsu.edu&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Pull Request==&lt;br /&gt;
*[https://github.com/expertiza/reimplementation-front-end/pull/16 https://github.com/expertiza/reimplementation-front-end/pull/16]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
*[https://docs.google.com/document/d/1dXwTNHR26eou6EJZkME8k8FhlpxCf_roMmWzclca8bA/edit?usp=sharing Project Instructions]&lt;/div&gt;</summary>
		<author><name>Sswattam</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=152076</id>
		<title>CSC/ECE 517 Fall 2023 - E2362. Create a page to edit an Assignment's due date in ReactJS</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=152076"/>
		<updated>2023-12-03T22:33:22Z</updated>

		<summary type="html">&lt;p&gt;Sswattam: /* Test Plan */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Expertiza==&lt;br /&gt;
&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is a [http://rubyonrails.org/ Ruby on Rails] based open source project. Instructors have the ability to add new projects, assignments, etc., as well as edit existing ones. Later on, they can view student submissions and grade them. Students can also use Expertiza to organize into teams to work on different projects and assignments and submit their work. They can also review other students' submissions.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 3:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves creating a page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.)&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Create a UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Design a user-friendly page that lists all the assignments with their corresponding due dates.&lt;br /&gt;
#*Implement the necessary React components for displaying the due dates page.&lt;br /&gt;
Implemented below updates which were required to be done from previous version:&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Number of review rounds&amp;quot; input tab.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Align the &amp;quot;Timezone&amp;quot; field in the same column as the checkboxes.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Show/Hide Date Updater&amp;quot; button.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Use Date Updater&amp;quot; column from the table.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Change the &amp;quot;Apply late policy&amp;quot; field to say, ~ &amp;quot;Use the late policy for this assignment&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Add a space between &amp;quot;Due date reminder&amp;quot; and &amp;quot;(hrs.)&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 4:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves updating front-end of the page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.) - Include dummy data.&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Update the UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Included dummy data&lt;br /&gt;
#*Enhanced the front-end of the page&lt;br /&gt;
&lt;br /&gt;
== Files added / modified ==&lt;br /&gt;
&lt;br /&gt;
*reimplementation-front-end/src/App.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/dueDate.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/DueDate.css&lt;br /&gt;
&lt;br /&gt;
== Test Plan ==&lt;br /&gt;
*The frontend has been implemented according to requirements, with no mandated automated test cases. Manual testing is performed, involving human interaction to validate functionality. This approach emphasizes thorough testing through user actions and scenarios.&lt;br /&gt;
&lt;br /&gt;
== Results (Screenshots) ==&lt;br /&gt;
*Below is the image of the older version for comparison:&lt;br /&gt;
[[File:DuedateOlderPage.png|990px]]&lt;br /&gt;
*Updated page to edit assignment's due dates:&lt;br /&gt;
[[File:Duedate_page.png|990px]]&lt;br /&gt;
*Enhanced page to edit assignment's due dates:&lt;br /&gt;
[[File:UpdatedDueDatePage.png|990px]]&lt;br /&gt;
&lt;br /&gt;
==Team==&lt;br /&gt;
=====Mentor===== &lt;br /&gt;
* Kartiki Bhandakkar&lt;br /&gt;
&lt;br /&gt;
=====Members===== &lt;br /&gt;
* Sourabh Wattamwar &amp;lt;sswattam@ncsu.edu&amp;gt;&lt;br /&gt;
* Nirav Shah &amp;lt;nshah28@ncsu.edu&amp;gt;&lt;br /&gt;
* Mohit Soni &amp;lt;msoni@ncsu.edu&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Pull Request==&lt;br /&gt;
*[https://github.com/expertiza/reimplementation-front-end/pull/16 https://github.com/expertiza/reimplementation-front-end/pull/16]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
*[https://docs.google.com/document/d/1dXwTNHR26eou6EJZkME8k8FhlpxCf_roMmWzclca8bA/edit?usp=sharing Project Instructions]&lt;/div&gt;</summary>
		<author><name>Sswattam</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=152075</id>
		<title>CSC/ECE 517 Fall 2023 - E2362. Create a page to edit an Assignment's due date in ReactJS</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=152075"/>
		<updated>2023-12-03T22:28:57Z</updated>

		<summary type="html">&lt;p&gt;Sswattam: /* Files added / modified */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Expertiza==&lt;br /&gt;
&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is a [http://rubyonrails.org/ Ruby on Rails] based open source project. Instructors have the ability to add new projects, assignments, etc., as well as edit existing ones. Later on, they can view student submissions and grade them. Students can also use Expertiza to organize into teams to work on different projects and assignments and submit their work. They can also review other students' submissions.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 3:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves creating a page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.)&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Create a UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Design a user-friendly page that lists all the assignments with their corresponding due dates.&lt;br /&gt;
#*Implement the necessary React components for displaying the due dates page.&lt;br /&gt;
Implemented below updates which were required to be done from previous version:&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Number of review rounds&amp;quot; input tab.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Align the &amp;quot;Timezone&amp;quot; field in the same column as the checkboxes.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Show/Hide Date Updater&amp;quot; button.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Use Date Updater&amp;quot; column from the table.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Change the &amp;quot;Apply late policy&amp;quot; field to say, ~ &amp;quot;Use the late policy for this assignment&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Add a space between &amp;quot;Due date reminder&amp;quot; and &amp;quot;(hrs.)&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 4:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves updating front-end of the page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.) - Include dummy data.&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Update the UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Included dummy data&lt;br /&gt;
#*Enhanced the front-end of the page&lt;br /&gt;
&lt;br /&gt;
== Files added / modified ==&lt;br /&gt;
&lt;br /&gt;
*reimplementation-front-end/src/App.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/dueDate.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/DueDate.css&lt;br /&gt;
&lt;br /&gt;
== Test Plan ==&lt;br /&gt;
* This is the frontend implementation, and the test cases are not required according to the requirements&lt;br /&gt;
&lt;br /&gt;
== Results (Screenshots) ==&lt;br /&gt;
*Below is the image of the older version for comparison:&lt;br /&gt;
[[File:DuedateOlderPage.png|990px]]&lt;br /&gt;
*Updated page to edit assignment's due dates:&lt;br /&gt;
[[File:Duedate_page.png|990px]]&lt;br /&gt;
*Enhanced page to edit assignment's due dates:&lt;br /&gt;
[[File:UpdatedDueDatePage.png|990px]]&lt;br /&gt;
&lt;br /&gt;
==Team==&lt;br /&gt;
=====Mentor===== &lt;br /&gt;
* Kartiki Bhandakkar&lt;br /&gt;
&lt;br /&gt;
=====Members===== &lt;br /&gt;
* Sourabh Wattamwar &amp;lt;sswattam@ncsu.edu&amp;gt;&lt;br /&gt;
* Nirav Shah &amp;lt;nshah28@ncsu.edu&amp;gt;&lt;br /&gt;
* Mohit Soni &amp;lt;msoni@ncsu.edu&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Pull Request==&lt;br /&gt;
*[https://github.com/expertiza/reimplementation-front-end/pull/16 https://github.com/expertiza/reimplementation-front-end/pull/16]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
*[https://docs.google.com/document/d/1dXwTNHR26eou6EJZkME8k8FhlpxCf_roMmWzclca8bA/edit?usp=sharing Project Instructions]&lt;/div&gt;</summary>
		<author><name>Sswattam</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=151630</id>
		<title>CSC/ECE 517 Fall 2023 - E2362. Create a page to edit an Assignment's due date in ReactJS</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=151630"/>
		<updated>2023-11-16T02:46:27Z</updated>

		<summary type="html">&lt;p&gt;Sswattam: /* Results (Screenshots) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Expertiza==&lt;br /&gt;
&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is a [http://rubyonrails.org/ Ruby on Rails] based open source project. Instructors have the ability to add new projects, assignments, etc., as well as edit existing ones. Later on, they can view student submissions and grade them. Students can also use Expertiza to organize into teams to work on different projects and assignments and submit their work. They can also review other students' submissions.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 3:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves creating a page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.)&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Create a UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Design a user-friendly page that lists all the assignments with their corresponding due dates.&lt;br /&gt;
#*Implement the necessary React components for displaying the due dates page.&lt;br /&gt;
Implemented below updates which were required to be done from previous version:&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Number of review rounds&amp;quot; input tab.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Align the &amp;quot;Timezone&amp;quot; field in the same column as the checkboxes.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Show/Hide Date Updater&amp;quot; button.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Use Date Updater&amp;quot; column from the table.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Change the &amp;quot;Apply late policy&amp;quot; field to say, ~ &amp;quot;Use the late policy for this assignment&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Add a space between &amp;quot;Due date reminder&amp;quot; and &amp;quot;(hrs.)&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 4:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves updating front-end of the page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.) - Include dummy data.&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Update the UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Included dummy data&lt;br /&gt;
#*Enhanced the front-end of the page&lt;br /&gt;
&lt;br /&gt;
== Files added / modified ==&lt;br /&gt;
&lt;br /&gt;
*reimplementation-front-end/src/App.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/dueDate.tsx&lt;br /&gt;
== Test Plan ==&lt;br /&gt;
* This is the frontend implementation, and the test cases are not required according to the requirements&lt;br /&gt;
&lt;br /&gt;
== Results (Screenshots) ==&lt;br /&gt;
*Below is the image of the older version for comparison:&lt;br /&gt;
[[File:DuedateOlderPage.png|990px]]&lt;br /&gt;
*Updated page to edit assignment's due dates:&lt;br /&gt;
[[File:Duedate_page.png|990px]]&lt;br /&gt;
*Enhanced page to edit assignment's due dates:&lt;br /&gt;
[[File:UpdatedDueDatePage.png|990px]]&lt;br /&gt;
&lt;br /&gt;
==Team==&lt;br /&gt;
=====Mentor===== &lt;br /&gt;
* Kartiki Bhandakkar&lt;br /&gt;
&lt;br /&gt;
=====Members===== &lt;br /&gt;
* Sourabh Wattamwar &amp;lt;sswattam@ncsu.edu&amp;gt;&lt;br /&gt;
* Nirav Shah &amp;lt;nshah28@ncsu.edu&amp;gt;&lt;br /&gt;
* Mohit Soni &amp;lt;msoni@ncsu.edu&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Pull Request==&lt;br /&gt;
*[https://github.com/expertiza/reimplementation-front-end/pull/16 https://github.com/expertiza/reimplementation-front-end/pull/16]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
*[https://docs.google.com/document/d/1dXwTNHR26eou6EJZkME8k8FhlpxCf_roMmWzclca8bA/edit?usp=sharing Project Instructions]&lt;/div&gt;</summary>
		<author><name>Sswattam</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:UpdatedDueDatePage.png&amp;diff=151629</id>
		<title>File:UpdatedDueDatePage.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:UpdatedDueDatePage.png&amp;diff=151629"/>
		<updated>2023-11-16T02:45:31Z</updated>

		<summary type="html">&lt;p&gt;Sswattam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sswattam</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=151625</id>
		<title>CSC/ECE 517 Fall 2023 - E2362. Create a page to edit an Assignment's due date in ReactJS</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=151625"/>
		<updated>2023-11-16T02:42:23Z</updated>

		<summary type="html">&lt;p&gt;Sswattam: /* Results (Screenshots) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Expertiza==&lt;br /&gt;
&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is a [http://rubyonrails.org/ Ruby on Rails] based open source project. Instructors have the ability to add new projects, assignments, etc., as well as edit existing ones. Later on, they can view student submissions and grade them. Students can also use Expertiza to organize into teams to work on different projects and assignments and submit their work. They can also review other students' submissions.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 3:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves creating a page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.)&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Create a UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Design a user-friendly page that lists all the assignments with their corresponding due dates.&lt;br /&gt;
#*Implement the necessary React components for displaying the due dates page.&lt;br /&gt;
Implemented below updates which were required to be done from previous version:&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Number of review rounds&amp;quot; input tab.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Align the &amp;quot;Timezone&amp;quot; field in the same column as the checkboxes.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Show/Hide Date Updater&amp;quot; button.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Use Date Updater&amp;quot; column from the table.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Change the &amp;quot;Apply late policy&amp;quot; field to say, ~ &amp;quot;Use the late policy for this assignment&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Add a space between &amp;quot;Due date reminder&amp;quot; and &amp;quot;(hrs.)&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 4:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves updating front-end of the page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.) - Include dummy data.&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Update the UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Included dummy data&lt;br /&gt;
#*Enhanced the front-end of the page&lt;br /&gt;
&lt;br /&gt;
== Files added / modified ==&lt;br /&gt;
&lt;br /&gt;
*reimplementation-front-end/src/App.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/dueDate.tsx&lt;br /&gt;
== Test Plan ==&lt;br /&gt;
* This is the frontend implementation, and the test cases are not required according to the requirements&lt;br /&gt;
&lt;br /&gt;
== Results (Screenshots) ==&lt;br /&gt;
*Below is the image of the older version for comparison:&lt;br /&gt;
[[File:DuedateOlderPage.png|990px]]&lt;br /&gt;
*Updated page to edit assignment's due dates:&lt;br /&gt;
[[File:Duedate_page.png|990px]]&lt;br /&gt;
*Enhanced page to edit assignment's due dates:&lt;br /&gt;
[[File:UpdatedDueDatePage.jpeg|990px]]&lt;br /&gt;
&lt;br /&gt;
==Team==&lt;br /&gt;
=====Mentor===== &lt;br /&gt;
* Kartiki Bhandakkar&lt;br /&gt;
&lt;br /&gt;
=====Members===== &lt;br /&gt;
* Sourabh Wattamwar &amp;lt;sswattam@ncsu.edu&amp;gt;&lt;br /&gt;
* Nirav Shah &amp;lt;nshah28@ncsu.edu&amp;gt;&lt;br /&gt;
* Mohit Soni &amp;lt;msoni@ncsu.edu&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Pull Request==&lt;br /&gt;
*[https://github.com/expertiza/reimplementation-front-end/pull/16 https://github.com/expertiza/reimplementation-front-end/pull/16]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
*[https://docs.google.com/document/d/1dXwTNHR26eou6EJZkME8k8FhlpxCf_roMmWzclca8bA/edit?usp=sharing Project Instructions]&lt;/div&gt;</summary>
		<author><name>Sswattam</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:UpdatedDueDatePage.jpeg&amp;diff=151619</id>
		<title>File:UpdatedDueDatePage.jpeg</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:UpdatedDueDatePage.jpeg&amp;diff=151619"/>
		<updated>2023-11-16T02:41:13Z</updated>

		<summary type="html">&lt;p&gt;Sswattam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sswattam</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:Updated_Due_Date_Page.jpeg&amp;diff=151604</id>
		<title>File:Updated Due Date Page.jpeg</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:Updated_Due_Date_Page.jpeg&amp;diff=151604"/>
		<updated>2023-11-16T02:35:57Z</updated>

		<summary type="html">&lt;p&gt;Sswattam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sswattam</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=151601</id>
		<title>CSC/ECE 517 Fall 2023 - E2362. Create a page to edit an Assignment's due date in ReactJS</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=151601"/>
		<updated>2023-11-16T02:35:21Z</updated>

		<summary type="html">&lt;p&gt;Sswattam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Expertiza==&lt;br /&gt;
&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is a [http://rubyonrails.org/ Ruby on Rails] based open source project. Instructors have the ability to add new projects, assignments, etc., as well as edit existing ones. Later on, they can view student submissions and grade them. Students can also use Expertiza to organize into teams to work on different projects and assignments and submit their work. They can also review other students' submissions.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 3:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves creating a page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.)&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Create a UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Design a user-friendly page that lists all the assignments with their corresponding due dates.&lt;br /&gt;
#*Implement the necessary React components for displaying the due dates page.&lt;br /&gt;
Implemented below updates which were required to be done from previous version:&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Number of review rounds&amp;quot; input tab.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Align the &amp;quot;Timezone&amp;quot; field in the same column as the checkboxes.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Show/Hide Date Updater&amp;quot; button.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Use Date Updater&amp;quot; column from the table.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Change the &amp;quot;Apply late policy&amp;quot; field to say, ~ &amp;quot;Use the late policy for this assignment&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Add a space between &amp;quot;Due date reminder&amp;quot; and &amp;quot;(hrs.)&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Program 4:&amp;lt;/strong&amp;gt;&lt;br /&gt;
The task involves updating front-end of the page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.) - Include dummy data.&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Update the UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Included dummy data&lt;br /&gt;
#*Enhanced the front-end of the page&lt;br /&gt;
&lt;br /&gt;
== Files added / modified ==&lt;br /&gt;
&lt;br /&gt;
*reimplementation-front-end/src/App.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/dueDate.tsx&lt;br /&gt;
== Test Plan ==&lt;br /&gt;
* This is the frontend implementation, and the test cases are not required according to the requirements&lt;br /&gt;
&lt;br /&gt;
== Results (Screenshots) ==&lt;br /&gt;
*Below is the image of the older version for comparison:&lt;br /&gt;
[[File:DuedateOlderPage.png|990px]]&lt;br /&gt;
*Updated page to edit assignment's due dates:&lt;br /&gt;
[[File:Duedate_page.png|990px]]&lt;br /&gt;
*Enhanced page to edit assignment's due dates:&lt;br /&gt;
[[File:Updated_Due_Date_Page.jpeg|990px]]&lt;br /&gt;
&lt;br /&gt;
==Team==&lt;br /&gt;
=====Mentor===== &lt;br /&gt;
* Kartiki Bhandakkar&lt;br /&gt;
&lt;br /&gt;
=====Members===== &lt;br /&gt;
* Sourabh Wattamwar &amp;lt;sswattam@ncsu.edu&amp;gt;&lt;br /&gt;
* Nirav Shah &amp;lt;nshah28@ncsu.edu&amp;gt;&lt;br /&gt;
* Mohit Soni &amp;lt;msoni@ncsu.edu&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Pull Request==&lt;br /&gt;
*[https://github.com/expertiza/reimplementation-front-end/pull/16 https://github.com/expertiza/reimplementation-front-end/pull/16]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
*[https://docs.google.com/document/d/1dXwTNHR26eou6EJZkME8k8FhlpxCf_roMmWzclca8bA/edit?usp=sharing Project Instructions]&lt;/div&gt;</summary>
		<author><name>Sswattam</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=150712</id>
		<title>CSC/ECE 517 Fall 2023 - E2362. Create a page to edit an Assignment's due date in ReactJS</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=150712"/>
		<updated>2023-10-30T23:35:42Z</updated>

		<summary type="html">&lt;p&gt;Sswattam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Expertiza==&lt;br /&gt;
&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is a [http://rubyonrails.org/ Ruby on Rails] based open source project. Instructors have the ability to add new projects, assignments, etc., as well as edit existing ones. Later on, they can view student submissions and grade them. Students can also use Expertiza to organize into teams to work on different projects and assignments and submit their work. They can also review other students' submissions.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
The task involves creating a page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.)&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Create a UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Design a user-friendly page that lists all the assignments with their corresponding due dates.&lt;br /&gt;
#*Implement the necessary React components for displaying the due dates page.&lt;br /&gt;
Implemented below updates which were required to be done from previous version:&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Number of review rounds&amp;quot; input tab.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Align the &amp;quot;Timezone&amp;quot; field in the same column as the checkboxes.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Show/Hide Date Updater&amp;quot; button.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Use Date Updater&amp;quot; column from the table.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Change the &amp;quot;Apply late policy&amp;quot; field to say, ~ &amp;quot;Use the late policy for this assignment&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Add a space between &amp;quot;Due date reminder&amp;quot; and &amp;quot;(hrs.)&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Files added / modified ==&lt;br /&gt;
&lt;br /&gt;
*reimplementation-front-end/src/App.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/dueDate.tsx&lt;br /&gt;
&lt;br /&gt;
== Results (Screenshots) ==&lt;br /&gt;
*Page to edit assignment's due dates:&lt;br /&gt;
[[File:Duedate_page.png|990px]]&lt;br /&gt;
&lt;br /&gt;
==Team==&lt;br /&gt;
=====Mentor===== &lt;br /&gt;
* Kartiki Bhandakkar&lt;br /&gt;
&lt;br /&gt;
=====Members===== &lt;br /&gt;
* Sourabh Wattamwar &amp;lt;sswattam@ncsu.edu&amp;gt;&lt;br /&gt;
* Nirav Shah &amp;lt;nshah28@ncsu.edu&amp;gt;&lt;br /&gt;
* Mohit Soni &amp;lt;msoni@ncsu.edu&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Pull Request==&lt;br /&gt;
*[https://github.com/expertiza/reimplementation-front-end/pull/16 https://github.com/expertiza/reimplementation-front-end/pull/16]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
*[https://docs.google.com/document/d/1dXwTNHR26eou6EJZkME8k8FhlpxCf_roMmWzclca8bA/edit?usp=sharing Project Instructions]&lt;/div&gt;</summary>
		<author><name>Sswattam</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:Duedate_page.png&amp;diff=150706</id>
		<title>File:Duedate page.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:Duedate_page.png&amp;diff=150706"/>
		<updated>2023-10-30T23:33:45Z</updated>

		<summary type="html">&lt;p&gt;Sswattam: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sswattam</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:Duedate.png&amp;diff=150704</id>
		<title>File:Duedate.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:Duedate.png&amp;diff=150704"/>
		<updated>2023-10-30T23:33:11Z</updated>

		<summary type="html">&lt;p&gt;Sswattam: Sswattam uploaded a new version of File:Duedate.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sswattam</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:Duedate.png&amp;diff=150702</id>
		<title>File:Duedate.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:Duedate.png&amp;diff=150702"/>
		<updated>2023-10-30T23:32:40Z</updated>

		<summary type="html">&lt;p&gt;Sswattam: Sswattam uploaded a new version of File:Duedate.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sswattam</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=150696</id>
		<title>CSC/ECE 517 Fall 2023 - E2362. Create a page to edit an Assignment's due date in ReactJS</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2023_-_E2362._Create_a_page_to_edit_an_Assignment%27s_due_date_in_ReactJS&amp;diff=150696"/>
		<updated>2023-10-30T23:31:14Z</updated>

		<summary type="html">&lt;p&gt;Sswattam: Created page with &amp;quot;==Expertiza==  [http://expertiza.ncsu.edu/ Expertiza] is a [http://rubyonrails.org/ Ruby on Rails] based open source project. Instructors have the ability to add new projects,...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Expertiza==&lt;br /&gt;
&lt;br /&gt;
[http://expertiza.ncsu.edu/ Expertiza] is a [http://rubyonrails.org/ Ruby on Rails] based open source project. Instructors have the ability to add new projects, assignments, etc., as well as edit existing ones. Later on, they can view student submissions and grade them. Students can also use Expertiza to organize into teams to work on different projects and assignments and submit their work. They can also review other students' submissions.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
The task involves creating a page to edit an assignment's Due Date in ReactJS. A Due Dates page will display all the assignments with their corresponding due dates. It contains a table which displays data regarding an assignment such as - Deadline type, Date &amp;amp; time, Submission and Review Allowed, Reminders (hrs.)&lt;br /&gt;
&lt;br /&gt;
Tasks that were accomplished:&lt;br /&gt;
&lt;br /&gt;
#&amp;lt;strong&amp;gt;Create a UI Page to edit an assignment's Due Date:&amp;lt;/strong&amp;gt;&lt;br /&gt;
#*Design a user-friendly page that lists all the assignments with their corresponding due dates.&lt;br /&gt;
#*Implement the necessary React components for displaying the due dates page.&lt;br /&gt;
Implemented below updates which were required to be done from previous version:&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Number of review rounds&amp;quot; input tab.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Align the &amp;quot;Timezone&amp;quot; field in the same column as the checkboxes.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Show/Hide Date Updater&amp;quot; button.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Remove the &amp;quot;Use Date Updater&amp;quot; column from the table.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Change the &amp;quot;Apply late policy&amp;quot; field to say, ~ &amp;quot;Use the late policy for this assignment&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
#&amp;lt;strong&amp;gt;Add a space between &amp;quot;Due date reminder&amp;quot; and &amp;quot;(hrs.)&amp;quot;.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Files added / modified ==&lt;br /&gt;
&lt;br /&gt;
*reimplementation-front-end/src/App.tsx&lt;br /&gt;
*reimplementation-front-end/src/pages/DueDate/dueDate.tsx&lt;br /&gt;
&lt;br /&gt;
== Results (Screenshots) ==&lt;br /&gt;
*Page to edit assignment's due dates:&lt;br /&gt;
[[File:duedate.jpg|700px]]&lt;br /&gt;
&lt;br /&gt;
==Team==&lt;br /&gt;
=====Mentor===== &lt;br /&gt;
* Kartiki Bhandakkar&lt;br /&gt;
&lt;br /&gt;
=====Members===== &lt;br /&gt;
* Sourabh Wattamwar &amp;lt;sswattam@ncsu.edu&amp;gt;&lt;br /&gt;
* Nirav Shah &amp;lt;nshah28@ncsu.edu&amp;gt;&lt;br /&gt;
* Mohit Soni &amp;lt;msoni@ncsu.edu&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Pull Request==&lt;br /&gt;
*[https://github.com/expertiza/reimplementation-front-end/pull/16 https://github.com/expertiza/reimplementation-front-end/pull/16]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
*[https://docs.google.com/document/d/1dXwTNHR26eou6EJZkME8k8FhlpxCf_roMmWzclca8bA/edit?usp=sharing Project Instructions]&lt;/div&gt;</summary>
		<author><name>Sswattam</name></author>
	</entry>
</feed>