Skip to content

Commit

Permalink
Merge pull request #4301 from inception-project/feature/4229-Better-p…
Browse files Browse the repository at this point in the history
…roject-template-selection

#4229 - Better project template selection
  • Loading branch information
reckart authored Nov 17, 2023
2 parents 64ee0f4 + ba79e6d commit 01c08ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public StandardProjectInitializer(@Lazy ProjectService aProjectService)
@Override
public String getName()
{
return "Everything but the kitchen sink";
return "Classic linguistic project";
}

@Override
Expand Down Expand Up @@ -78,6 +78,7 @@ public void configure(Project aProject) throws IOException
@Override
public Optional<String> getDescription()
{
return Optional.of("Comes pre-configured for many linguistic annotation tasks.");
return Optional.of("Comes pre-configured for many linguistic annotation tasks. "
+ "This is closest to the classic WebAnno project setup.");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

.template-card {
transition: box-shadow .3s;
border-color: var(--bs-secondary-color);
}

.template-card:hover {
Expand Down

0 comments on commit 01c08ee

Please sign in to comment.